﻿.auth-container {
    /*overflow-y: scroll;
    scroll-behavior: auto;
    height: 79vh;*/
    width: 100%;
    margin: 0px;
    display: flex;
    justify-content: center;
}

.auth-card {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    /*max-width: 400px;*/
    height: fit-content;
    padding: 15px;
    width: 50%;
    text-align: center;
    transition: all 0.3s ease;
    background-color: lightgray;
}

    .auth-card h3 {
        font-size: 28px;
        color: #6b5f57;
    }
.form-group {
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    /*background-color: #a9a9a9;*/
}

    .form-group label {
        font-weight: bold;
        font-size: 14px;
        /*color: #443c36;*/ /* WCAG AA compliant */
        text-align: left;
    }
    .form-group input,
    .form-group select {
        width: auto;
        border-radius: 8px;
        border: 1px solid #ccc;
        /*padding: 5px;*/
        transition: border-color 0.3s ease;
    }

    .form-group select {
        height: 40px; /* Fixing height */
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #6b5f57;
            outline: none;
        }
.form-grid {
    /*padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 30px;*/ /* row-gap, column-gap */
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 25px;
}
.form-control {
    padding: 8px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #6b5f57;
        outline: none;
    }


.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.form-check-label {
    font-size: 14px;
    color: #6b5f57;
}

.btn-login {
    background-color: #8c0019;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #564f49;
    }

.extra-links {
    margin-top: 15px;
    font-size: 14px;
}

    .extra-links a {
        color: #6b5f57;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

        .extra-links a:hover {
            color: #3e362b;
            text-decoration: underline;
        }
