/* ===================================================================
   Descalplay - cadastro.css (Estilização do Formulário de Assinatura)
   =================================================================== */

body {
    background-color: #111111;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    background-color: #181818;
    border: 1px solid #2d2d2d;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    box-sizing: border-box;
}

h1 {
    font-size: 26px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #14b866;
    padding-bottom: 10px;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #aaaaaa;
    display: inline-block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="date"] {
    background-color: #111111;
    border: 1px solid #2d2d2d;
    color: #ffffff;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus {
    border-color: #14b866;
    outline: none;
}

button {
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

button:hover {
    background: #119c55 !important;
    transform: scale(1.01);
}

input[type="checkbox"] {
    accent-color: #14b866;
    transform: scale(1.2);
    margin-right: 8px;
    vertical-align: middle;
}