/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Corpo */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container do formulário (mais largo e retangular) */
.container {
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #001f3f;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    text-align: left; /* alinhado para formulário profissional */
}

/* Título */
h2 {
    color: #001f3f;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

/* Grupos de input */
.input-group {
    margin-bottom: 25px;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

/* Inputs maiores e modernos */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bbb;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

input:focus,
textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

/* Botão */
button {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
    background-color: #007BFF;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Link de voltar */
a {
    display: inline-block;
    margin-top: 20px;
    color: #007BFF;
    font-size: 16px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
