/* ==========================================
   M Tek Investment Platform
   forgot_password.css
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#0B1120;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.forgot-card{
    width:100%;
    max-width:450px;
    background:#1A233A;
    border-radius:20px;
    padding:35px;
    border:1px solid rgba(255,215,0,.15);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:110px;
    height:auto;
}

h2{
    text-align:center;
    color:#FFD700;
    font-size:32px;
    margin-bottom:10px;
    font-weight:bold;
}

.sub-text{
    text-align:center;
    color:#CCCCCC;
    margin-bottom:30px;
    line-height:24px;
    font-size:15px;
}

.success{
    background:#198754;
    color:#fff;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
}

.error{
    background:#DC3545;
    color:#fff;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
}

label{
    display:block;
    margin-bottom:8px;
    color:#FFD700;
    font-weight:bold;
}

.input-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:20px;
}

.input-box i{
    width:55px;
    background:#14213D;
    color:#FFD700;
    text-align:center;
    font-size:18px;
    padding:16px 0;
}

.input-box input{
    flex:1;
    border:none;
    outline:none;
    padding:16px;
    font-size:15px;
    color:#333;
}

.input-box input::placeholder{
    color:#888;
}

.btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#FFD700;
    color:#111;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#FFC107;
    transform:translateY(-2px);
}

.btn:active{
    transform:scale(.98);
}

.bottom{
    margin-top:20px;
    text-align:center;
}

.bottom a{
    color:#FFD700;
    text-decoration:none;
    font-weight:bold;
}

.bottom a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .forgot-card{
        padding:25px;
    }

    h2{
        font-size:28px;
    }

    .logo img{
        width:90px;
    }

}

@media(max-width:480px){

    body{
        padding:15px;
    }

    .forgot-card{
        padding:20px;
        border-radius:15px;
    }

    h2{
        font-size:24px;
    }

    .sub-text{
        font-size:14px;
    }

    .btn{
        font-size:16px;
        padding:14px;
    }

}