@import 'global.css';

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a2e2e 0%, #f50000 100%);
    padding: 20px;
}

.card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 28px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.logo { width: 110px; height: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
h2 { color: #fff; font-size: 22px; }
h1 { color: #e4e2e2; font-size: 20px; text-align: center; }
p  { color: #e4e2e2; font-size: 14px; text-align: center; line-height: 1.6; }

.botoes { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    background: rgba(182,10,10,0.85);
    color: #fff;
    border: 1px solid rgb(230,48,48);
}
button:hover  { background: rgba(255,0,0,0.5); box-shadow: 0 4px 15px rgba(255,255,255,0.2); }
button:active { transform: scale(0.98); }

@media (max-width: 480px) {
    body { padding: 14px; }
    .card { padding: 28px 16px; }
    .logo { width: 90px; }
    h1 { font-size: 18px; }
}
