.forgot-section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 8% 70px;
    background: #f5f5f5;
}
.forgot-container{
    width: 500px;
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.forgot-logo{
    text-align: center;
    margin-bottom: 35px;
}
.forgot-logo img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
    border-radius: 50%;
}
.forgot-logo h2{
    color: #c9a227;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.forgot-logo h1{
    font-size: 38px;
    color: #111;
    font-family: Georgia, serif;
   margin-bottom:10px;
}
.forgot-logo span{
    display: block;
    color: #111;
    font-size: 17px;
    line-height: 1.6;
}
.input-box{
    margin-bottom: 25px;
}
.input-box label{
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.input-box input{
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 12px;
}
.input-box input:focus{
    border-color: #c9a227;
}
button{
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: #111;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover{
    background: #c9a227;
}
.retour{
    display: block;
    margin-top: 25px;
    text-align: center;
    text-decoration: none;
    color: #c9a227;
    font-weight: bold;
}
.success{
    background: #dff6dd;
    color: #1b7a1b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.error{
    background: #fde7e7;
    color: #b30000;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
@media(max-width:768px){
    .forgot-container{
    width: 100%;
    padding: 30px;
    }
}
