:root {
    --azul: rgba(7, 51, 87, 0.884);
    --azul-claro:rgba(14, 165, 233, 0.4);
    --azul-escuro: #1f3158;
    --branco: #fff;
    --preto: #000;
    --cinza-claro: #f4f4f5;
    --cinza: #9ca3af;
    --cinza-escuro: #6b7280;
    --verde: #32a57fb4;
    --verde-escuro: #0b5a41b9;
    --vermelho: #ef444491;
    --vermelho-escuro: #531919a8;
    --amarelo: #f59e0b;
    --amarelo-escuro: #915f0e;
    --radius: 5px;
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    --texto-pequeno: 7.5px;
    --texto-medio: 9px; 
    --texto-grande: 11px;
    --texto-enorme: 13px;
    --texto-gigante: 20px;
    
    --icones: 12px;
   
    --border: #e5e7eb;
    --border-color: #e5e7eb;
    --fundo-label-cadastros: #fcfcfc;
    
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.06);
    --bg-gradient: radial-gradient(circle at 10% 20%, rgba(11, 15, 25, 1) 0%, rgba(19, 27, 46, 1) 45%, rgba(10, 14, 23, 1) 100%);
    
   
}

body {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    color: #000;
    font-size: var(--texto-pequeno);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.telas {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 1rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    background: var(--cinza-claro);
    box-sizing: border-box;
}

.telas *,
.telas *::before,
.telas *::after {
    box-sizing: border-box;
}

.titulo {
    font-size: var(--texto-grande);
    color: var(--preto);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.subtitulo {
    font-size: var(--texto-pequeno);
    color: var(--cinza);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.subtitulo--erro {
    font-size: var(--texto-pequeno);
    color: var(--vermelho);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.datas {    
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px 6px;
    font-family: 'Michroma', sans-serif;
    font-size: var(--texto-pequeno);
    font-weight: 400;
    color: var(--azul);
    min-width: 80px;
    height: auto;
    min-height: 32px;
}

.datas:focus {
    outline: none;
    border: 1px solid var(--azul);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
