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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #1a2535;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 3rem;
    width: 360px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    text-align: center;
}

.login-logo {
    max-height: 60px;
    max-width: 180px;
    margin-bottom: 1.2rem;
    object-fit: contain;
}

h1 {
    font-size: 1.25rem;
    color: #1a2535;
    margin-bottom: 1.8rem;
    line-height: 1.4;
}

.field {
    text-align: left;
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.3rem;
}

.field input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #ccd3dc;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.field input:focus {
    outline: none;
    border-color: #2563eb;
}

button[type="submit"] {
    width: 100%;
    padding: 0.65rem;
    margin-top: 1.2rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #1d4ed8;
}

.error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
