.logo-mb{
    content: url('/res/img/common/Logo-Blanco.svg');
}

.banner-container{
    position: relative;
    width: 100%;
}

.banner-content{
    width: 100%;
    position: absolute;
    bottom: 6rem;
}

.banner-title{
    font-size: 12vw;
    width: 100%;
    padding: 0 10%;
    font-weight: bold;
    color: white;
    position: relative;
}

.banner-title::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    aspect-ratio: 2/1;
    height: 5.5rem;
    background-image: url('/res/img/common/Fecha-Blanca.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}

.form-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-img{
    width: 100%;
    padding: 0 0 0 20%;
}

.form{
    width: 100%;
    padding: 5rem 7.5% 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form > input{
    border: none;
    border-bottom: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 1.05rem;
}

.form > input::placeholder,
.form > textarea::placeholder{
    color: var(--primary-color);
    font-weight: 300;
}

.form > textarea{
    border: none;
    background-color: var(--input-color);
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    height: 10rem;
}

.form > button{
    border: 2px solid var(--primary-color);
    border-radius: 1.15rem;
    font-size: 1.05rem;
    color: var(--primary-color);
    background-color: transparent;
    padding: 0.5rem 3rem;
    margin: 0 auto;
    width: fit-content;
    cursor: pointer;
    transition: color 0.5s ease, background-color 0.5s ease;
}

.form > button:hover{
    background-color: var(--primary-color);
    color: white;
}

.form-coins{
    width: 100%;
}

@media (width >= 1024px) {
    .logo-pc{
        content: url('/res/img/common/Logo-Blanco.svg');
    }

    .banner-content {
        bottom: 30%;
    }

    .banner-title {
        font-size: 4.5vw;
        width: 100%;
        padding: 0 15% 0 5%;
    }

    .banner-title::after {
        height: 11vw;
        top: 60%;
        aspect-ratio: 10 / 6;
    }
    
    .form-img{
        width: 100%;
        padding: 0 0 0 60%;
    }
    
    .form{
        width: 60%;
        margin: -10vw 0 -20vw;
        gap: 5rem;
    }
    
    .form > input{
        font-size: 1.25rem;
    }
    
    .form > textarea{
        font-size: 1.25rem;
    }
    
    .form > button{
        border-radius: 1.25rem;
        font-size: 1.25rem;
        margin: 0;
    }
    
    .form-coins{
        padding-left: 40%;
        z-index: -1;
    }
}