/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full page background */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Container for the form */
.forgot-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* Box styling */
.forgot-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading */
.forgot-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Input field */
.forgot-box input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

/* Submit button */
.forgot-box button {
    width: 100%;
    background-color: #007BFF;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.forgot-box button:hover {
    background-color: #0056b3;
}

/* Login link */
.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #007BFF;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

