/* forgot-password.css */

/* General Layout */
.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

/* Form Styling */
.forgot-password-form {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: #00827f;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 8px;
}

.forgot-password-form h2 {
    font-weight: 600;
    color: #FFF;
    margin-bottom: 20px;
}

.forgot-password-form input[type="password"],
.forgot-password-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;  /* Jarak antar input */
    border: 1px solid #ddd;
    border-radius: 4px;
}

.forgot-password-form button {
    width: 100%;
    padding: 12px;
    background-color: #005F5C;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Jarak antara tombol dan input */
}

.forgot-password-form button:hover {
    background-color: #004c49;
}

.forgot-password-form a {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
}

/* For the "back to login" link */
.back-to-login {
    margin-top: 20px;
    font-size: 14px;
    color: #FFF;
    text-align: center;
}
