@font-face {
    font-family: 'Centra No1';
    src: url('../fonts/CentraNo1-Book.woff2') format('woff2'),
         url('../fonts/CentraNo1-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background: linear-gradient(90deg, #fff 60%, #f3e7e7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Centra No1', Arial, sans-serif;
}
.login-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 40px 32px 32px 32px;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.login-form h2 {
    color: #b53027;
    text-align: center;
    margin-bottom: 24px;
    font-size: 2rem;
}
.form-group {
    margin-bottom: 18px;
}
label {
    display: block;
    margin-bottom: 6px;
    color: #222;
    font-weight: 600;
}
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    background: #faf9f9;
    transition: border 0.2s;
}
input[type="text"]:focus, input[type="password"]:focus {
    border: 1.5px solid #b53027;
    outline: none;
}
.login-button {
    width: 100%;
    padding: 12px 0;
    background: #b53027;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.login-button:hover {
    background: #8d2320;
}
.error-message {
    color: #b53027;
    text-align: center;
    margin-top: 12px;
    min-height: 24px;
    font-size: 1rem;
} 
