/* global.css */
:root{
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI",
               Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans",
               "Liberation Sans", sans-serif;
}
html, body{
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* aplica também a elementos de formulário */
button, input, select, textarea {
  font-family: inherit;
}
/* pesos sugeridos */
h1{ font-weight: 800; letter-spacing: 1px; color: #02233E !important; }
h2{ font-weight: 600; }
h3, h4{ font-weight: 600; }
strong, b{ font-weight: 600; }

.card {
padding: 30px;
border: 1px solid #eaeaea;
}

.logo {
display: block;	
width: 300px;
margin: 50px auto;
}

label {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
font-size: 11px;	
}

.cadastro {
display: block;
margin-top: 30px;
padding: 15px;
width: 100%;
border-radius: 8px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
font-size: 18px;
border: none;
background-color: #30A597;
color: #fff;
text-shadow: 0 0 2px rgba(0,0,0,0.1);
transition: all 0.3s;	
}

.cadastro:hover {
background-color: #21A2AC;
transform: scale(1.02);
color: #fff;
transition: all 0.3s;	
}