/* Estilos Globais */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff512f, #dd2476);
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #2d084e;
    flex-direction: column;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
}

.header {
    text-align: center;
    margin-bottom: 1rem;
}

.header-image {
    max-width: 200px;
    margin-bottom: 0.5rem;
}

h1 {
    text-align: center;
    color: #e67e22;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

/* Incluindo password no estilo */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="celular"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333;
}

/* Incluindo password no estilo focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="celular"]:focus,
input[type="date"]:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

button:hover {
    background-color: #d35400;
}

button[type="button"] {
    background-color: #c0392b;
}

button[type="button"]:hover {
    background-color: #a93226;
}

/* Estilo para smartphones */
@media screen and (max-width: 480px) {
    .form-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .header-image {
        max-width: 80px;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    label {
        font-size: 0.9rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="celular"],
    input[type="date"] {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    button {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

