﻿/* CONTAINER */
.forgot-container {
    width: 100%;
    max-width: 360px;
    margin: auto;
}

/* TOP */
.forgot-top {
    text-align: center;
    margin-bottom: 32px;
}

/* ICON */
.forgot-logo {
    width: 78px;
    height: 78px;
    margin: auto;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

    .forgot-logo i {
        color: white;
        font-size: 32px;
    }

/* TITLE */
.forgot-top h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

/* SUBTITLE */
.forgot-top p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* FORM GROUP */
.form-group {
    margin-bottom: 22px;
}

    /* LABEL */
    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #374151;
    }

/* INPUT BOX */
.input-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 16px;
    transition: all 0.2s ease;
}

    .input-box:focus-within {
        border-color: #2563eb;
        background: white;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    }

    /* ICON */
    .input-box i {
        color: #6b7280;
        font-size: 16px;
        margin-right: 12px;
    }

/* INPUT */
.form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 15px 0 !important;
    font-size: 14px;
}

/* BUTTON */
.btn-forgot {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 15px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .btn-forgot:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
    }

/* FOOTER */
.forgot-footer {
    margin-top: 24px;
    text-align: center;
}

    .forgot-footer a {
        text-decoration: none;
        color: #2563eb;
        font-size: 14px;
        font-weight: 600;
    }

        .forgot-footer a i {
            margin-right: 4px;
        }

/* VALIDATION */
.text-danger.small {
    font-size: 12px;
}
