body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    width: 600px;
    margin: auto;
    background-color: #fff;
    opacity: 80%;
    display: flex;
    flex-direction: row;
    padding: 20px;
    box-shadow: 0 0 50px rgb(0, 60, 255);
    border-radius: 10px;
    margin-top: 25px;
    transform: translate(-3%, -2%);
}

.form-content{
    flex: 1;
}

.buttom-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

h2 {
    text-align: center;
    color: #000000;
}
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}
input[type="text"], input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #0011ff;
    border-radius: 4px;
}

.checkbox-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.checkbox-container label {
    flex: 1;
    text-align: center;
}
input[type="checkbox"] {
    margin-left: 30px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #fd4b05;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    opacity: 100%;
}

.container_2{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #ffffff;
    padding: 10px;
}
.container_2 div{
    flex: 1;
    min-width: 100px;
}
.button-row {
    display: flex;
    justify-content: flex-start; /* Campo de búsqueda a la izquierda */
    align-items: center; /* Alinear verticalmente */
    margin-bottom: 2px; /* Espacio debajo del campo de búsqueda */
}
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.search-btn img {
    width: 30px; /* Tamaño del ícono */
    height: 30px;
}
.main-content {
    display: flex;
}