/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 20px;
}

/* Forgot Password Container */
.forgot-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    padding: 20px;
    text-align: left;
    border: 2px solid rgb(20, 16, 9);
}

/* Logo */
.forgot-container img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
    
}

/* Headings */
h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: darkslateblue;
    text-align: center;
}
h2 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
}

/* Input Fields */
input[type="tel"], input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Toggle Password Visibility */
#toggle-password {
    position: absolute;
    margin-top: 12px;
    cursor: pointer;
    color: #888;
}

/* Button */
button {
    padding: 12px;
    background-color: darkslateblue;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}
button:hover {
    background-color: #e64a19;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 12px;
    display: none;
}

/* Footer */
.footer-text {
    margin-top: 20px;
    font-size: 12px;
    color: #2b2828;
    text-align: center;
}
.footer-text a {
    color: #ff5722;
    text-decoration: none;
}
.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forgot-container {
        width: 90%;
        padding: 15px;
    }
    h1 {
        font-size: 18px;
    }
    h2 {
        font-size: 14px;
    }
    input, button {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .forgot-container {
        width: 100%;
        max-width: 320px;
        padding: 10px;
    }
    h1 {
        font-size: 16px;
    }
    h2 {
        font-size: 14px;
    }
    input, button {
        font-size: 12px;
        padding: 8px;
    }
}
