/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
/* Corpo da página */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #4e73df, #1c2dc8);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* Container principal */
.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
 
/* Título */
h1 {
    color: #333;
    margin-bottom: 10px;
}
 
/* Subtítulo */
p {
    color: #777;
    margin-bottom: 30px;
}
 
/* Área dos botões */
.botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
 
/* Botão padrão */
.btn {
    display: inline-block;
    padding: 12px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    background-color: #4e73df;
    color: white;
    transition: 0.3s;
    cursor: pointer;
}
 
/* Hover do botão */
.btn:hover {
    background-color: #2e59d9;
    transform: scale(1.05);
}
 
/* Botão secundário */
.btn-secundario {
    background-color: #858796;
}
 
.btn-secundario:hover {
    background-color: #60616f;
}
 