/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg,
            #f8fafc 0%,
            #eef2ff 100%);
}

/* Layout geral */
.page {
    display: flex;
    min-height: 100vh;
}

/* Faixa lateral */
.side-band {
    width: 35%;
    background-color: #1e3a8a;
    color: white;
    align-content: end;
    padding: 20px;
}

/* Área central */
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Card central */
.card {
    width: 900px;
    max-width: 100%;
    height: 600px;
    background: #ffffff;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Página esquerda */
.page-left {
    flex: 1;
    background-color: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Página direita */
.page-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.logo {
    max-width: 160px;
    filter: brightness(0);
}

.page-right h1 {
    font-size: 1.5rem;
    color: #1f2937;
}

/* Login específico */
.login-panel {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.login-panel h2 {
    color: #1e3a8a;
    font-size: 1.6rem;
}

/* Botões */
.actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn.primary {
    background: #2563eb;
    color: #fff;
}

.btn.primary:hover {
    background: #1d4ed8;
}

.btn.secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn.secondary:hover {
    background: #2563eb;
    color: #fff;
}

/* Campos */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.field label {
    font-size: 0.85rem;
    color: #374151;
    text-align: left
}

.field input {
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid #c7d2fe;
    font-size: 0.95rem;
}

.field input:focus {
    outline: none;
    border-color: #1e3a8a;
}

.btn.full {
    width: 100%;
    margin-top: 1rem;
}

.subtitle {
    color: #4b5563;
    line-height: 1.5;
}

button.btn {
    all: unset; /* remove estilo default do browser */
    display: inline-block;
    text-align: center;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
