﻿/* FORM CONTAINER */
.auth-form {
    width: 100%;
    max-width: 360px;
    margin: auto;
}

/* HEADER */
.auth-form-header {
    text-align: center;
    margin-bottom: 30px;
}

/* ICON */
.auth-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

    .auth-icon i {
        color: white;
        font-size: 32px;
    }

/* TITLE */
.auth-form-header h2 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.auth-form-header p {
    font-size: 14px;
    color: #6b7280;
}

/* LABEL */
.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

/* MODERN INPUT */
.modern-input {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0 14px;
    transition: all 0.2s ease;
}

    .modern-input:focus-within {
        border-color: #2563eb;
        background: white;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

    /* ICON */
    .modern-input i {
        color: #6b7280;
        font-size: 15px;
        margin-right: 10px;
    }

/* INPUT */
.form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 0 !important;
    font-size: 14px;
}

/* OPTIONS */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -4px;
    margin-bottom: 22px;
    font-size: 13px;
}

    .login-options a {
        text-decoration: none;
        color: #2563eb;
        font-weight: 500;
    }

/* BUTTON */
.btn-login {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .btn-login:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
    }

/* FOOTER */
.login-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

    .login-footer a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
        margin-left: 5px;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

/* VALIDATION */
.text-danger.small {
    font-size: 12px;
}
