/* Configurações Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h2 {
    color: #1a1a1b;
    text-align: center;
    margin-bottom: 20px;
}

/* Área do Texto do Contrato */
#contrato-texto {
    height: 250px;
    overflow-y: scroll;
    border: 1px solid #e0e0e0;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Campos de Input */
.input-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; /* Garante que o padding não quebre a largura */
    font-size: 16px;
}

/* Área da Assinatura */
.signature-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed #007bff;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 10px;
}

#signature-pad {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

/* Botões */
.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#clear {
    background-color: #e0e0e0;
    color: #333;
}

#clear:hover {
    background-color: #d0d0d0;
}

#submit {
    background-color: #28a745;
    color: white;
}

#submit:hover {
    background-color: #218838;
}

/* Responsividade para Celular */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .signature-wrapper {
        height: 150px;
    }
}