
/* static/css/login.css */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 100%;
}

.form-wrapper h2 {
    margin-bottom: 0.2em;
    font-size: 24px;
    color: #1e3c72;
    text-align: center;
}

.sub-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 1.5em;
}

label {
    font-weight: 600;
    display: block;
    margin: 0.8em 0 0.4em;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 1.5em;
    background-color: #1e3c72;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #16325c;
}

.bottom-links {
    text-align: center;
    margin-top: 1em;
}

.bottom-links a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.error-msg {
    background-color: #ffe6e6;
    color: #cc0000;
    padding: 10px;
    margin-bottom: 1em;
    border-radius: 6px;
    text-align: center;
}
