
/* .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/FONDO-LANDING-PAGE-NIU-TELECOM.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: #ffffff; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1, p {
    font-weight: bold;
}

.contai-form{
    position: absolute;
    width: 34%;
    height: 105%;
    top: 10%;
    left: 78.7%;
    transform: translate(-50%, -50%);
    margin-top: 20%;
    background-color: #040e60;
}

.btn-primary {
    position: relative;
    left: 28%;
    top: 10%;
    background-color: #f50c2b;
    border: none;
    border-radius: 8px;
    width: 38%;
}

.btn-primary:hover {
    background-color: #ebbbbb;
    color: #000;
}

@media (max-width: 767px) {
    .form-container {
        width: 95%;
    }
    .contai-form{
        background-color: #ffffff00;
    }

}

@media (min-width: 768px) and (max-width: 992px) {
    .form-container {
        width: 90%;
    }

    
    .contai-form{
        background-color: #ffffff00;
    }
 
}

@media (min-width: 992px) {
    .form-container {
        width: 100%;
    }


} */


body{
    width: 100%;
    height: 100%;
}

/* Estilo general para la imagen de fondo */
.background-image {
    /* background: url('./assets/FONDO-LANDING-PAGE-NIU-TELECOM.jpg') no-repeat center center; */
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;

    background: url('./assets/fondo.png') no-repeat center center;
    align-items: center;

    background-repeat: no-repeat;
    background-attachment: fixed ;
    justify-content: space-around;
    background-size: cover;
    background-position: right;
}

/* Estilo del contenedor del formulario */
.form-container {
    width: 500px;
    max-width: 100%;

    background: rgba(147, 197, 253, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For better cross-browser compatibility */
    border-radius: 30px;
    padding: 5px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    filter: drop-shadow(0 0 .75rem rgba(37, 40, 80, .5));

    min-width: 200px;
     display: flex;
     justify-content: center;
     flex-direction: column;
     flex-wrap: wrap;



     
}

/* Estilo de los encabezados y el formulario */
h1, p {
    font-weight: bold;
}


.Subtitle-container {
    color: #fff;
    width: 100%;
    left: 0;
    top: -5rem;
    text-align: left;
    padding: 1rem 2rem;

      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }
    
.Subtitle-container > h2{
    font-weight: 700;
    }
    .Subtitle-container > p{
    font-weight: 100;
    }

form{
    padding: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input {
    width: 90%;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(209, 213, 219, 0.8);
    color: #6b7280;
    outline: none;
    transition: all 0.3s ease;
}

input::placeholder {
    color: #9ca3af;
}

input:focus {
    background: rgba(229, 231, 235, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.conditions {
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.conditions p {

    margin-bottom: .2rem;
}
/* estilo del contenedor de fondo */
.contai-form{
    position: absolute;
    display: flex;
    justify-content: flex-start;
    overflow-y: auto;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    
}

.containe{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8rem;
    padding-top: 0rem;
}

/* Botón de enviar */
.btn-primary {

    width: 45%;
align-self: center;

    background: white;
    color: #1e3a8a;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.form-group{
    margin-bottom: .3rem;
    justify-content: center;
    display: flex;
}


.logo-img { /* Custom class for the main logo img tag */
    width: 6rem;
    padding-bottom: 1.5rem;
    margin-top: .5rem;
}

.hero-image {
    width: 15rem;
    padding-top: 1rem;
    margin-bottom: .5rem;
}


@media (max-width: 767px) {

.background-image{
    background-position: 50%;
}

    .contai-form {
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    }

    .containe{
        justify-content: center;
        padding-left: 0rem;
        padding-top: 0rem;
        margin-top: 2rem;
        padding: initial;

    }

    h1 {
        font-size: 1.5rem;
    }
        
    p {
            font-size: .8rem;
            margin-bottom: .3rem;
    }

    .form-group{
        margin-bottom: .3rem;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 1200px) {

    h1 {
        font-size: 1.8rem;
        }
        
    p {
            font-size: .8rem;
            margin-bottom: .5rem;
        }

    .form-group{
        margin-bottom: .5rem;
        }
}

@media (max-width: 550px) {
    .form-container {
        width: 80%; 
    }
    .btn-primary {
        padding: 0px;
    }

    .Subtitle-container {
        padding: 0rem 0rem;
        }
        
        .logo-img { /* Custom class for the main logo img tag */
            width: 4rem;
        }
        
        .hero-image {
            width: 12rem;
        }

}

@media (max-height: 550px) {

    .form-container {
        width: 80%; 
    }

    .contai-form {

        align-items: flex-start;
        

        padding-top: 1rem;
    }
    

    .containe {
        margin-bottom: 2rem; 
    }
}
