﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* WRAPPER */
.forgot-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* WAVE BACKGROUND */
.wave-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .wave-bg svg {
        width: 100%;
        height: 100%;
    }

/* FORM */
.form-container {
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 50px;
}

.wiz-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #27AE60;
    margin-bottom: 16px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    color: #1E293B;
    margin-bottom: 20px;
}

.page-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
    max-width: 26rem;
}

.form-label-custom {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1E293B;
    margin-bottom: 16px;
    display: block;
}

.form-control-custom {
    width: 26rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #D0D5DD;
    padding-bottom: 8px;
    outline: none;
}

    .form-control-custom:focus {
        border-bottom-color: #27AE60;
    }
.btn-wrapper {
    display: flex;
    justify-content: flex-end; 
    gap: 12px;
    margin-top: 30px;
}

.submit-btn,
.cancel-btn {
    width: 8rem;
    height: 3rem;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.submit-btn {
    color: #fff;
    background: linear-gradient(135deg, #2ECC71 0%, #1ABC9C 100%);
}

.cancel-btn {
    color: #333;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.forgot-form label.error {
    color: #ff4d4d !important;
    font-size: 0.8rem;
    display: block;
    font-family: 'Poppins', sans-serif;
}
/* MOBILE */
@media (max-width: 768px) {
    .forgot-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-container {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        width: 90%;
        max-width: 380px;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }

    .form-control-custom {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }
}
