/* Reset Padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Corpo da Página */
body {
    background: #f0f4f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Wrapper para empurrar o footer para baixo */
.wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container Principal */
.container {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4);
}

/* Título */
h2 {
    color: #0077ff;
    margin-bottom: 20px;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #00cccc;
    outline: none;
    background: #f9f9f9;
    color: #333;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
}

input:focus {
    border-color: #00ff99;
}

/* Botão */
button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #00cccc, #00ff99);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #00ff99, #00cccc);
}

/* Links de Alternância */
.switch {
    color: #0077ff;
    cursor: pointer;
    font-size: 14px;
    margin-top: 12px;
}

.switch:hover {
    text-decoration: underline;
}

/* Ocultar Forms */
.hidden {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #ffffff;
    color: #333;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
