﻿/* ===========================================
   FORGOT PASSWORD — Sweet Xile
   Scoped entirely under .forgot-wrap
   =========================================== */

.forgot-wrap {
    min-height: 70vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #FFE600;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

    .forgot-wrap::before {
        content: '';
        position: absolute;
        width: 380px;
        height: 380px;
        background: rgba(0,0,0,0.06);
        border-radius: 50%;
        top: -120px;
        right: -100px;
        pointer-events: none;
    }

    .forgot-wrap::after {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(0,0,0,0.05);
        border-radius: 50%;
        bottom: -60px;
        left: -50px;
        pointer-events: none;
    }

    .forgot-wrap .container_row {
        display: block !important;
        gap: 0 !important;
        flex-wrap: unset !important;
        justify-content: unset !important;
    }

    .forgot-wrap .container_first_cell,
    .forgot-wrap .container_last_cell {
        display: none !important;
    }

    .forgot-wrap .container_cell,
    .forgot-wrap .container_cell_col8,
    .forgot-wrap .container_cell_col4,
    .forgot-wrap .container_cell_col6 {
        flex: unset !important;
        min-width: unset !important;
        max-width: unset !important;
        overflow: visible !important;
    }

    .forgot-wrap .payment-details {
        background: #ffffff;
        border-radius: 28px;
        border: 3px solid #111111;
        box-shadow: 8px 8px 0px #111111;
        overflow: hidden;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .forgot-wrap .title-container {
        padding: 36px 32px 0;
        text-align: center;
    }

    /* TITLE — Luckiest Guy */
    .forgot-wrap .title-large {
        font-family: 'Luckiest Guy', cursive !important;
        font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
        color: #111111 !important;
        -webkit-text-fill-color: #111111 !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        margin: 0 !important;
        line-height: 1.1 !important;
        letter-spacing: 0.02em !important;
    }

    .forgot-wrap .mb-30 {
        margin-bottom: 0 !important;
    }

    .forgot-wrap hr.thick {
        border: none !important;
        border-top: 3px solid #FFE600 !important;
        margin: 20px 32px !important;
    }

    .forgot-wrap hr.no-margins {
        margin-left: 32px !important;
        margin-right: 32px !important;
    }

    .forgot-wrap .tab-nav {
        display: none !important;
    }

    .forgot-wrap .tab-panes > div,
    .forgot-wrap .tab-panes .active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .forgot-wrap .tab-content {
        padding: 8px 32px 36px !important;
    }

    .forgot-wrap .registro_area {
        padding: 0 !important;
        margin: 0 !important;
    }

    .forgot-wrap .container_blocks {
        display: block;
    }

    .forgot-wrap .container_block_row {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    /* EMAIL INPUT — Poppins */
    .forgot-wrap .form-email,
    .forgot-wrap .form-element {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
        float: none !important;
        display: block !important;
        padding: 15px 22px !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 50px !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        color: #111111 !important;
        background: #fafafa !important;
        outline: none !important;
        transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

        .forgot-wrap .form-email:focus,
        .forgot-wrap .form-element:focus {
            border-color: #111111 !important;
            background: #ffffff !important;
            box-shadow: 0 0 0 4px rgba(255,230,0,0.35) !important;
        }

        .forgot-wrap .form-email::placeholder {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            color: #bbbbbb;
            font-style: normal;
        }

    /* SUBMIT BUTTON — Poppins */
    .forgot-wrap .form-submit-button {
        width: 100% !important;
        padding: 16px 24px !important;
        background: #FFE600 !important;
        color: #111111 !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        border: 2px solid #111111 !important;
        border-radius: 50px !important;
        cursor: pointer !important;
        box-shadow: 4px 4px 0px #111111 !important;
        transition: transform 0.15s ease, box-shadow 0.15s ease !important;
        display: block !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        float: none !important;
    }

        .forgot-wrap .form-submit-button:hover {
            transform: translateY(-2px) !important;
            box-shadow: 6px 6px 0px #111111 !important;
        }

        .forgot-wrap .form-submit-button:active {
            transform: translateY(2px) !important;
            box-shadow: 2px 2px 0px #111111 !important;
        }

@media (max-width: 520px) {
    .forgot-wrap {
        padding: 40px 16px;
        align-items: flex-start;
    }

        .forgot-wrap .payment-details {
            border-radius: 20px;
            box-shadow: 5px 5px 0px #111111;
        }

        .forgot-wrap .title-container {
            padding: 28px 20px 0 !important;
        }

        .forgot-wrap hr.thick {
            margin: 16px 20px !important;
        }

        .forgot-wrap .tab-content {
            padding: 8px 20px 28px !important;
        }

        .forgot-wrap .title-large {
            font-size: 1.3rem !important;
        }
}

.forgot-wrap .form-email:not(:placeholder-shown),
.forgot-wrap .form-email:focus {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}