body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f2f4f7;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: #004b8d;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
}

.header span {
    font-size: 14px;
    opacity: 0.8;
}

.main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    max-width: 520px;
    width: 100%;
}

.card h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

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

button,
.btn-primary {
    background: #004b8d;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

button:hover,
.btn-primary:hover {
    background: #003463;
}

.result-ok {
    color: #15803d;
    font-weight: 600;
}

.result-erro {
    color: #b91c1c;
    font-weight: 600;
}

.foto-box {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.foto-box img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #004b8d;
}
