/* Estilos generales */
body {
    background: url('../imagenes/Logo1.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
   
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    transition: background 0.3s, border 0.3s;
    color:#ffffff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    background: #ffffff;
    color:#000000;
    border-color: #888888;
}

/* Estilos de los botones */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.button-container .btn-1 {
    background-color: #FADBD8;
    color: black;
    font-weight: bold;
    font-family: 'Poppins';
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.button-container .btn-1:hover {
    background-color: #FADBD8;
}

.button-container .btn-1 span {
    position: relative;
    z-index: 2;
}

.button-container .btn-1::before,
.button-container .btn-1::after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
}

.button-container .btn-1::before {
    top: 5px;
    left: -2px;
    width: calc(100% + 6px);
    height: calc(100% - 10px);
    transform: scaleY(1);
    z-index: 1;
}

.button-container .btn-1:hover::before {
    transform: scaleY(0);
}

.button-container .btn-1::after {
    left: 5px;
    top: -5px;
    width: calc(100% - 10px);
    height: calc(100% + 10px);
    transform: scaleX(1);
    z-index: 1;
}

.button-container .btn-1:hover::after {
    transform: scaleX(0);
}

.radio-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-right: 10px;
    
}

.radio-group input[type="radio"] {
    margin-right: 5px;

}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .container {
        padding: 20px 30px;
    }

    h2 {
        font-size: 24px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .button-container .btn-1 {
        padding: 12px;
        font-size: 16px;
    }
}
