/* gca-estilos.css */

#gca-contrato-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.gca-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.gca-progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    height: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.gca-progress-bar-fill {
    height: 100%;
    background-color: #76c7c0;
    width: 0%;
    transition: width 0.3s ease;
}

#gca-form-container .gca-form-section {
    margin-bottom: 15px;
}

#gca-form-container .gca-form-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#gca-form-container .gca-form-section input,
#gca-form-container .gca-form-section select,
#gca-form-container .gca-form-section textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#gca-contrato-container button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #76c7c0;
    border: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#gca-contrato-container button:hover {
    background-color: #5aa9a4;
}

#gca-preview {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

/* Estilos para las firmas adicionales */
.gca-signature-section {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.gca-signature-section div {
    width: 45%;
    text-align: center;
}

.gca-signature-section p {
    margin-top: 60px; /* Espacio para la firma */
    border-top: 1px solid #000;
    width: 100%;
}

@media (max-width: 600px) {
    #gca-contrato-container {
        padding: 10px;
    }

    #gca-contrato-container button {
        width: 100%;
        margin: 5px 0;
    }

    .gca-signature-section {
        flex-direction: column;
    }

    .gca-signature-section div {
        width: 100%;
        margin-bottom: 20px;
    }
}