:root {
    --primary-color: #3d6769;
    --background-color: #F5F6FA;
    --text-color: #2C3E50;
    --error-color: #E74C3C;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: 'OpenDyslexic', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: 'OpenDyslexic', Arial, sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

/* Add this new style for form */
form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1.1em;
    font-family: 'OpenDyslexic', Arial, sans-serif;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
}

button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    font-family: 'OpenDyslexic', Arial, sans-serif;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2d4d4f;
}

.helper-text {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}