/* style.css */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fef6dc; /* softer light yellow */
    color: #1E3A5F;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #1E3A5F;
    box-shadow: 10px 10px 0 #1E3A5F;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-container img {
    max-width: 120px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"],
input[type="password"] {
    padding: 10px;
    border: 2px solid #99aabb; /* softened input border */
    border-radius: 7px;
    font-size: 14px; /* reduced font size */
}

.login-button {
    transition: 0.4s;
    border-radius: 7px;
    color: #1E3A5F;
    border-style: solid;
    border-width: 2px;
    background-color: #FFE274;
    box-shadow: 5px 5px 0 0 #1E3A5F;
    border-color: #1E3A5F;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
}

.login-button:hover {
    box-shadow: 2px 2px 0 0 #1E3A5F;
}

.forgot-password {
    font-size: 14px;
    margin-top: 10px;
    color: #1E3A5F;
    text-decoration: none;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

