﻿.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 20px;
}

.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

    .login-box h1 {
        margin-bottom: 20px;
        color: #343a40;
    }

    .login-box h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

.form-floating label {
    padding-left: 10px;
}

.form-check-label {
    font-size: 14px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004085;
    }

.text-center a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .text-center a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.text-muted {
    color: #6c757d;
}
