body {
    font-family: 'Geologica', sans-serif;
    background-color: #F9F9FC;
    color: #18316A;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 400px;
    width: 100%;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #1495FF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0E7ACC;
}

.switch-link {
    text-align: center;
    margin-top: 16px;
}

.switch-link a {
    color: #1495FF;
    text-decoration: underline;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 16px;
}