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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #ccc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
}

/* Título */
header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* sombra leve */
    text-align: center;
}


/* Formulário */
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: #f1f1f1;
    outline: none;
}

button {
    padding: 16px;
    background-color: #ff4f84;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e03d70;
}

.text-link {
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    color: #444;
}

.text-link a {
    color: #ff4f84;
    text-decoration: none;
    font-weight: bold;
}
