body{
    margin:0;
    font-family:"Montserrat",sans-serif;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.forgot-container{
    width:420px;
    max-width:90%;
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-sizing:border-box;
    box-shadow:0 0 30px rgba(0,0,0,.45);
}

.forgot-logo{
    width:70px;
    margin-bottom:20px;
}

.forgot-title{
    color:#d3a54b;
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.forgot-subtitle{
    color:#999;
    line-height:1.5;
    margin-bottom:35px;
    font-size:15px;
}

.forgot-input{
    width:100%;
    padding:16px;
    background:#262626;
    border:none;
    border-radius:12px;
    color:#fff;
    outline:none;
    font-size:16px;
    margin-bottom:20px;
    box-sizing:border-box;
    transition:.2s;
}

.forgot-input:focus{
    box-shadow:0 0 0 2px #d3a54b;
}

.forgot-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#d3a54b;
    color:#111;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.forgot-btn:hover{
    background:#e4b85d;
    transform:translateY(-2px);
}

.forgot-btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.message{
    display: none;

    margin-top: 25px;
    padding: 16px;


    width: 100%;
    box-sizing: border-box;

    background: #1d2128;


    border-radius: 12px;

    color: #fff;
    font-size: 15px;
    line-height: 1.5;

    text-align: left;

    overflow: hidden;
}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(-8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}