@import 'styleGeral.css';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    margin-top: 80px; /* Para compensar o cabeçalho fixo */
    padding: 40px 20px;
    text-align: center;
    height: 100vh;
}

.main-content {
    background: rgba(92, 114, 150, 0.8); /* Fundo preto e levemente opaco */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 252, 252, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

/* Tipografia e espaçamento melhorados */
h1 {
    color: #ffffff;
    font-size: 2.8em; /* Tamanho maior para impacto */
    letter-spacing: 2px; /* Espaçamento entre letras para melhorar a leitura */
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: rgb(255, 255, 255); 
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: rgb(221, 217, 0);
}

input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(245, 162, 162); 
    background-color: #ffffff; 
    color: rgb(255, 240, 37);
}

button {
    padding: 15px 25px;
    background-color:rgba(255, 184, 52, 0.8);
    color: #ffe4e4; 
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: rgb(255, 200, 49);
    transform: scale(1.05); /* Leve aumento no hover */
}

/* Link estilizado */
a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}


a:hover {
    color: #ffffff;
}

a.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: rgb(64, 91, 167);
    color: #ffffff; /* Texto preto */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

a.btn:hover {
    background-color: rgb(255, 187, 40);
    transform: scale(1.05); /* Leve aumento no hover */
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(92, 114, 150, 0.8); /* Fundo preto e levemente opaco */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

label {
    color: #ffffff; 
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ffffff; 
    background-color: #ffffff; 
    color: #000000; 
}

button {
    padding: 15px 25px;
    background-color: #ff7a2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #134668;
    transform: scale(1.05); /* Leve aumento no hover */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para não interferir na navegação */
    z-index: -1; /* Mantém o conteúdo na frente */
}

.shape {
    position: absolute;
    background-color: rgba(0, 255, 0, 0.12);
    border-radius: 50%;
    filter: blur(20px); /* Desfoca mais para suavidade */
    animation: float 12s infinite ease-in-out; /* Animação com movimento suave */
    opacity: 0.8; /* Transparência para dar profundidade */
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    left: 15%;
    background-color: rgba(255, 0, 150, 0.1); /* Forma rosa clara */
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 15%;
    background-color: rgba(0, 255, 255, 0.2); /* Forma ciano clara */
}

.shape-3 {
    width: 280px;
    height: 280px;
    top: 30%;
    left: 60%;
    background-color: rgba(0, 255, 0, 0.15); /* Forma verde */
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 10%;
    background-color: rgba(255, 255, 0, 0.12); /* Forma amarela */
}

/* Estilizando o container principal */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.box {
    background-color: rgba(51, 51, 51, 0.85); /* Fundo semi-transparente para o conteúdo */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra aprimorada */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

p {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.6;
}