/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo da página */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgb(37, 211, 102), rgb(20, 154, 74));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Contêiner do formulário */
form {
    background: #ffffff;
    color: #333;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

/* Título */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(37, 211, 102); /* Verde do WhatsApp */
    font-size: 24px;
}

/* Labels */
label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* Inputs */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Botão de envio */
button {
    background: rgb(37, 211, 102); /* Verde do WhatsApp */
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: rgb(20, 154, 74); /* Verde mais escuro para hover */
}

/* Links */
a {
    color: rgb(37, 211, 102);
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 10px;
}

a:hover {
    text-decoration: underline;
}