#formulario-asistente {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.botonPorsche{
    background: #f9a800;
    border-radius:10px;
    padding-top:10px;
    padding-bottom:10px;
    font-size:25px;
    width:200px;
    border:0;
    color:#FBFCFF;
    font-weight:bold;
}
.botonPorscheNegro{
    background: Black;
    border-radius:10px;
    padding-top:10px;
    padding-bottom:10px;
    font-size:25px;
    width:200px;
    border:0;
    color:#FBFCFF;
    font-weight:bold;
}
.botonPorsche911{
    background: rgb(160, 35, 43);
    background: linear-gradient(90deg, rgba(160, 35, 43, 1) 0%, rgba(89, 22, 29, 1) 100%);    border-radius:10px;
    padding-top:10px;
    padding-bottom:10px;
    font-size:25px;
    width:200px;
    border:0;
    color:#FBFCFF;
    font-weight:bold;
}

#formulario-asistente input,
#formulario-asistente select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color:white;
}

@media (min-width: 768px) {
    #formulario-asistente input[name="nombre"],
    #formulario-asistente input[name="apellido"],
    #formulario-asistente input[name="telefono"],
    #formulario-asistente input[name="email"],
    #formulario-asistente select[name="pais"],
    #formulario-asistente select[name="estado"],
    #formulario-asistente select[name="tipo-registro"],
    #formulario-asistente input[name="evento"] {
        width: calc(50% - 10px);
    }
}

/* Estilos del campo País y Estado */
.imputAnimadoEmbecta-input-group select {
    background-color:white;
    width: 100%;
    padding: 1rem;
    border: solid 1.5px #9e9e9e;
    border-radius: 1rem;
    background-color: transparent;
    font-size: 1rem;
    color: #0E0E12;
    transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.imputAnimadoEmbecta-input-group select:focus {
    border: 1.5px solid #1a73e8;
}

.imputAnimadoEmbecta-input-group select + .imputAnimadoEmbecta-user-label {
    position: absolute;
    left: 15px;
    color: #060A3D;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.imputAnimadoEmbecta-input-group select:focus + .imputAnimadoEmbecta-user-label,
.imputAnimadoEmbecta-input-group select:valid + .imputAnimadoEmbecta-user-label {
    transform: translateY(-1.5rem);
    font-size: 1.0rem;
    color: black;
    font-weight: bold;
}

/* Alinear el checkbox y el texto en una misma fila */
#formulario-asistente label {
    display: flex;
    align-items: center; /* Alinea verticalmente el texto y el checkbox */
    font-size: 0.9rem; /* Ajusta el tamaño del texto */
    color: #FBFCFF; /* Cambia el color del texto según el diseño */
}

#formulario-asistente label input[type="checkbox"] {
    margin-right: 10px; /* Espacio entre el checkbox y el texto */
}

.checkbox-animado-container {
    display: flex;
    align-items: center;
}

.checkbox-animado-wrapper {
    margin-right: 10px; /* Espacio entre el checkbox y el texto */
}

.checkbox-animado-wrapper label {
    color: black; /* Mueve el color al CSS */
    font-size: 20px;
}

.checkbox-animado-texto label {
    color: black; /* Mueve el color al CSS */
    margin-left: 0; /* Asegúrate de que no haya margen izquierdo adicional */
    font-size: 14px;
}

.checkbox-animado-wrapper * {
    box-sizing: border-box;
}

.checkbox-animado-wrapper label {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.checkbox-animado-wrapper input {
    visibility: hidden;
    display: none;
}

.checkbox-animado-wrapper input:checked ~ .checkbox-animado {
    transform: rotate(45deg);
    width: 14px;
    margin-left: 12px;
    border-color: #0e0e12;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
}

.checkbox-animado-wrapper .checkbox-animado {
    display: block;
    width: inherit;
    height: inherit;
    border: 3px solid #0e0e12;
    border-radius: 6px;
    transition: all 0.375s;
}

.marketo-form {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.marketo-form h1 {
    width: 100%;
    color: black;
    text-align: center;
}

.marketo-form input[type="text"],
.marketo-form input[type="email"],
.marketo-form select {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 20px;
    color: #060A3D;
    background-color:white;
}

.input-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Alineación entre columnas */
    gap: 30px; /* Espacio entre los elementos */
    width: 100%;
}

.imputAnimadoEmbecta-input-group {
    position: relative;
    flex: 1 1 48%; /* Para que cada input ocupe el 48% del espacio */
}

.imputAnimadoEmbecta-input {
    width: 100%;
    border: solid 1.5px #9e9e9e;
    border-radius: 1rem;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: #f5f5f5;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.imputAnimadoEmbecta-user-label {
    position: absolute;
    left: 15px;
    color: #060A3D;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
}

.imputAnimadoEmbecta-input:focus,
.imputAnimadoEmbecta-input:valid {
    outline: none;
    border: 1.5px solid #1a73e8;
}

.imputAnimadoEmbecta-input:focus + .imputAnimadoEmbecta-user-label,
.imputAnimadoEmbecta-input:valid + .imputAnimadoEmbecta-user-label {
    transform: translateY(-1.5rem);
    font-size: 1.0rem;
    color: black;
    font-weight: bold;
}

.disclaimer {
    width: 100%;
    margin: 10px 0;
    color: black;
    font-size: 14px;
}

.submit-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .input-container {
    }

    .imputAnimadoEmbecta-input-group {
        flex: 1 1 100%;
    }

    .submit-btn {
        width: 100%;
    }
}


