@font-face {
    font-family: 'Rubik';
    src: url('/assets/fonts/Rubik/Rubik-Regular.woff2') format('woff2'),
         url('/assets/fonts/Rubik/Rubik-Regular.woff') format('woff'),
         url('/assets/fonts/Rubik/Rubik-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Rubik', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
}

.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.login-container h1 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

label {
    display: block;
    margin: 0.75rem 0 0.25rem;
}

input[type=email], input[type=password] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

button {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.75rem;
    background: #0057b7;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background: #00449e;
}

.error {
    margin-bottom: 1rem;
    color: #b00020;
    font-weight: 600;
}

p {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

p a {
    color: #0057b7;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-container {
        margin: 40px 1rem;
        padding: 1.5rem;
    }
}