.logoAvanza   {
    width: 200px; /* La imagen se ajusta al 100% del contenedor */
    height: 80px;
}

:root {
--primary: #04636c;
--secondary: #c904a3;
--accent: #00a8e8;
--light: #f8f9fa;
--dark: #212529;
--success: #28a745;
--gray: #6c757d;
--light-gray: #e9ecef;
--transition: all 0.3s ease;
}
        
* {
padding: 0;
box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}


h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}
form {
    background-color: var(--primary);
    padding: 50px 55px;
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
    box-shadow: 0px 0px 20px rgb(0, 0, 0);
}

form h2 {
    color: #ffffff;
    font-size: 45PX;
}

form p, input {
    color: whitesmoke;
    font-size: 20px;
    font-family:  'Montserrat', sans-serif;
}

.form-txt {
    display: flex;
    justify-content: space-between;
}

.form-txt a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 25px;
}

.form-txt a:hover {
    color: #c904a3;
}

.input-group {
    display: flex;
    flex-direction: column;
}



.formulario {
    padding: 20px;
    color: #212529;
}

.formulario_input {
    padding: 6px 20px;
    width: 100%;
    background:whitesmoke;
    color: black;
    margin: 10px;

}

label {
    padding: auto;
    text-align: left;
    margin: 1%;
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    font-size: large;

}

input, textarea, select {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 14px;
    margin-bottom: 25px;
    border: 0;
    border-left: 3px solid #04636c;
    box-shadow: 0px 0px 15px #0001;
    background-color: #c4e2d8;
    border-radius: 15px;
    font-size: 20px;
    color:var(--dark);
}

::placeholder {
    color: black;
    font-size: 20px;
}

:focus {
    outline: 1px solid #e008b2;
}

.submit-btn {
    letter-spacing: 2px;
    text-transform: uppercase;
    background:#c904a3;
    width: 50%;
    color: white;
    border-radius: 4%;
}

.checkbox {
    width: auto;
    height: 15px;
}
        
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        
.contact-method {
    display: flex;
    margin-bottom: 30px;
}
        
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}
        
.contact-details h4 {
    margin-bottom: 10px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
    margin-top: 20px;
}
        
.countdown {
    font-weight: bold;
    color: #155724;
}