/* Form */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: auto;
}

/* Contact section */
.contact {
    flex: 1;
    display: block;
    background-image: url("../assets/img/contactanos_fondo.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 88vh;
    align-items: center;
    padding: 30px 0;
}

.contact h1 {
    font-size: 2em;
    color: #022a80;
    padding: 15px;
    margin-top: 3rem;
}

.contact h2 {
    font-size: 1.5em;
    color: #022a80;
    font-weight: 600;
}

.contact select {
    padding: 5px;
    color: white;
    margin: 5px 0;
    width: 100%;
}

form span {
    color: red;
    font-size: 20px;
    font-weight: 800;
}

.contact p,
form label {
    color: black;
    font-size: 1em;
}

.contact input,
.contact select,
.contact textarea {
    border: solid 3px #000000;
    background-color: white;
    color: black;
}

#detalles-agente {
    display: none;
    margin-top: 20px;
}

.contact .btn-primary {
    width: 100px;
    background: #065da6;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    border: 15px;
    padding: 0;
    border-radius: 10px;
}

.contact .btn-primary:hover {
    background: #022a80;
}

.contact #espacio {
    padding-top: 50px;
}

.contact .informacion {
    color: #065da6;
    font-size: 1em;
    text-decoration: none;
}

/* Custom select */
.custom-select {
    width: 600px;
    height: 100%;
    color: #8b8888;
    background-color: #022a80;
}

.select-box {
    display: flex;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    justify-content: center;
}

.options-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 1000;
    background-color: #022a80;
}

.option {
    padding: 0 10px;
    cursor: pointer;
    color: #ffffff;
}

.option:hover {
    background-color: #065da6;
}

input[type="file"] {
    margin-bottom: 20px;
}

.form-container {
    display: none;
}