body {
    font-family: 'Poppins', sans-serif;
    background-color: gray;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.recovery-container {
   width: 100%;
    max-width: 290px;
    padding: 20px;
    background: #3a3a3a;
    border:  3px solid cyan;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recovery-container h2 {
    margin-bottom: 20px;
}

.recovery-container h2 {
    font-size: 30px;
    color: black;
     font-family: 'Great Vibes', cursive;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(to right, Grey, cyan);
    padding: 10px;
    border-radius: 50px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    color:#3498db;
    text-align: left;
    display: block;
    font-weight: bold;
}

input[type="email"],
input[type="text"],
input[type="password"] {
    padding: 10px;
    border:3px solid cyan;
    border-radius: 5px;
    font-size: 16px;
    width: 90%;
    background-color: lightgray;
    font-family: 'Great Vibes', cursive;
    color: green;
    font-weight: bold;
}


.buttons {
    display: flex;
    justify-content: space-between;
}

button,
a {
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid cyan;
    font-family: 'Great Vibes', cursive;

}

button:hover,
a:hover {
    background-color: cyan;
}

.form-group{
     color: skyblue;
     font-weight: bold;
     font-family: 'Great Vibes', cursive;
     }

.messages {
    margin-top: 10px;
    font-size: 14px;
    color: #001f3f;
}

.error-message {
    color: red;
}

.success-message {
    color: green;
    font-weight: bold;
    font-size: 14px;
    font-family: 'Great Vibes', cursive;

}

/* Proceed to Login Button */
.btn btn-success {
    background-color:#3498db ;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.btn btn-success:hover {
    background-color: cyan;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .form-group {
     display: flex;
     flex-direction: column;
     font-size: 13px;
     gap: 10px;
     }
     button {
      width: 100%;
      margin-bottom: 10px;
     }
     button:last-child {
     margin-bottom: 0;
     }

input[type="email"],
input[type="text"],
input[type="password"] {
    font-size: 13px;
    }

button,
a {
    font-size: 12px;
    }

.success-message {
    font-size: 12px;
    }
.recovery-container h2 {
    font-size: 16px;
    }
