* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
        #EF9F27 0%,
        #BA7517 40%,
        #854F0B 100%
    );
    padding: 2rem;
}

.login-container {
    background: #FAEEDA;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    border-top: 4px solid #BA7517;
}

h1 {
    text-align: center;
    color: #854F0B;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: Georgia, serif;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #854F0B;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #BA7517;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #EF9F27;
    box-shadow: 0 0 0 3px rgba(186, 117, 23, 0.15);
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #EF9F27, #BA7517);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 117, 23, 0.4);
    background: linear-gradient(135deg, #BA7517, #854F0B);
}

.btn-login:active {
    transform: translateY(0);
}

.login-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.login-tagline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #BA7517;
    text-align: center;
    margin-top: 0.5rem;
}
