﻿.login-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 20px;
}

.login-form-card {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-width: 900px;
    margin-top: 1rem;
}

.login-header img {
    max-height: 80px;
    margin-bottom: 0.5rem;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.login-form-card h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
}

.login-form-card hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.login-form-card .form-floating label {
    font-size: 0.9rem;
}

.login-form-card .form-control {
    border-radius: 0.3rem;
}

.login-form-card .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.3rem;
    transition: background-color 0.2s ease-in-out;
}

    .login-form-card .btn-primary:hover {
        background-color: #004494;
        border-color: #004494;
    }

.login-form-card .checkbox label {
    font-size: 0.9rem;
    color: #555;
}

.login-form-card .darker-border-checkbox.form-check-input {
    border-color: #adb5bd;
}

    .login-form-card .darker-border-checkbox.form-check-input:checked {
        background-color: #0056b3;
        border-color: #0056b3;
    }

.login-form-card .mt-3 p {
    margin-bottom: 0.5rem;
}

.login-form-card .mt-3 a {
    font-size: 0.85rem;
    color: #0056b3;
    text-decoration: none;
}

    .login-form-card .mt-3 a:hover {
        text-decoration: underline;
    }

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .suggestions-dropdown .list-group-item-action {
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        font-size: 0.9rem;
    }

        .suggestions-dropdown .list-group-item-action:hover {
            background-color: #f8f9fa;
        }
