body {
    background: #f4f6fb;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
}

h2 {
    text-align: center;
    color: #2d3a4b;
}

label {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: #333;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    padding: 0.5rem;
    border: 1px solid #bfc9d9;
    border-radius: 4px;
    margin-top: 0.3rem;
    font-size: 1rem;
}

button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0.7rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #1e40af;
}

p {
    text-align: center;
    margin-top: 1rem;
}

.auth-container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 320px;
    margin: auto;
}

body {
    background: #f4f6fb;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

select {
            padding: 0.5rem;
            border: 1px solid #bfc9d9;
            border-radius: 4px;
            font-size: 1rem;
            background: #f8fafc;
            margin-top: 0.3rem;
        }
        .senha-group {
            position: relative;
            display: flex;
            align-items: center;
        }
        .senha-group input {
            width: 100%;
            padding-right: 2.5rem;
        }
        .senha-toggle {
            position: absolute;
            right: 0.7rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        .senha-toggle svg {
            width: 22px;
            height: 22px;
            fill: #888;
        }