﻿.ats-auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--ats-background);
}

.ats-auth-container {
    width: 100%;
    padding: 2rem;
}
.ats-auth-container a{
    text-decoration:none;
}
.ats-login-card {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 2rem;
    background: white;
    border: 1px solid var(--ats-border);
    border-radius: 18px;
    box-shadow: var(--ats-shadow-md);
    text-align: center;
}

.ats-login-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.ats-login-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ats-text);
    margin-bottom: .5rem;
}

.ats-login-subtitle {
    color: var(--ats-muted); 
}

.ats-login-card .ats-form-label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: .5rem;
}

.ats-login-card .ats-form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid var(--ats-border);
    padding: .75rem 1rem;
    width: 100%;
}

    .ats-login-card .ats-form-control:focus {
        border-color: var(--ats-primary);
        box-shadow: 0 0 0 .2rem rgba(15,98,254,.15);
    }

.ats-login-button {
    width: 100%;
    height: 52px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

.ats-forgot-link {
    text-decoration: none;
    font-size: .9rem;
}

.ats-login-footer {
    margin-top: 2rem;
    color: var(--ats-muted);
    font-size: .85rem;
}


/******************************************************************************
    Change Password
******************************************************************************/

.ats-security-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #cfe2ff;
    background: #f8fbff;
    border-radius: 10px;
    text-align: left;
    font-size: .9rem;
}

    .ats-security-notice i {
        color: var(--ats-primary);
        font-size: 1.3rem;
        margin-top: 2px;
    }

.ats-password-group {
    position: relative;
}

    .ats-password-group .ats-form-control {
        padding-right: 48px;
    }

.ats-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--ats-muted);
    cursor: pointer;
}

    .ats-password-toggle:hover {
        color: var(--ats-primary);
    }

.ats-password-rules {
    text-align: left;
    border: 1px solid var(--ats-border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    background: #fafafa;
}

    .ats-password-rules h6 {
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .ats-password-rules ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ats-password-rules li {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: var(--muted);
        margin-bottom: .45rem;
        transition: .2s;
    }

        .ats-password-rules li.valid {
            color: #198754;
            font-weight: 500;
        }

            .ats-password-rules li.valid i::before {
                content: "\f26e";
            }

        .ats-password-rules li:last-child {
            margin-bottom: 0;
        }