body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #d9a7c7, #fffcdc);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4a4a4a;
}

.form-container {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 380px;
}

h2 {
    margin-bottom: 20px;
    color: #7b4a9a;
    font-size: 1.8em;
}

form {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 500;
    margin: 10px 0 5px;
    color: #6b6b6b;
    font-size: 0.9em;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    font-size: 0.95em;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: bold;
    background: #a569bd;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #8e44ad;
}

.forgot-password-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: bold;
    background: #b388ff;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.forgot-password-btn:hover {
    background: #9575cd;
}
