@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@font-face {
    font-family: "Dilo";
    src: url(/fuentes/DiloWorld.ttf);
}

body{
    background-image: url('../recursos/background/bk_lilac.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
}

body, input{
    font-family: 'Poppins', sans-serif ;
}

.container{
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.container::before{
    content: '';
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 40%;
    background-image: linear-gradient(-45deg,#E7BD4F 0%, #E7BD4F 100%);
    transform: translateY(0%);
    border-radius: 50%;
    z-index: 6;
    transition: 1.8s ease-in-out;
}


.forms-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 0 5rem;
}

.title{
    font-size: 2.5rem;
    color: #332065;
    margin-bottom: 10px;
}

.input-field{
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #332065;
    margin: 10px 0;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i{
    text-align: center;
    line-height: 55px;
    color: #80C4D7;
    font-size: 1.3rem;
}

.input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem ;
    color: #80C4D7;
}

.input-field input:placeholder-shown{
    color: blueviolet;
    font-weight: 500;
}

.btn{
    width: 150px;
    height: 49px;
    outline: none;
    border: none;
    border-radius: 20px;
    background-color: #fac849;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.5s;
}

.btn:hover {
    background-color: #FFB602;
    font-size: 1.1rem;
    cursor: pointer;
}

.social-text{
    color: rgb(255, 255, 255);
    display: flex !important;
    justify-content: center !important;
}



.social-media{
    display: flex;
    justify-content: center;
}

.social-icon{
    height: 46px;
    width: 46px;
    border: 1px solid #fac849;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fac849;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.5s;
}

.social-icon:hover{
    color: #FB4D44;
    border-color: #FB4D44;
    font-size: 1.7rem;
    transition: 0.1s;
}

.signin-signup{
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

.panels-container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 7;
}

.right-panel{
    padding: 3rem 17% 2rem 12%;
}

.panel .content{
    color: black;
}

.panels-container .panel .content img{
    height: 300px;
}
.panel h3{
    color: #332065;
    font-weight: lighter;
    line-height: 2;
    font-size: 4rem;
    font-family: "Dilo";
}

.panel p{
    font-size: 1.1rem;
    padding: 0.7rem 0;
    width: 100%;
    margin: 40px;
}

.panel button{
    margin: 0;
    background: none;
    border: 2px solid #332065;
    color: black;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.panel button:hover{
    margin: 0;
    background:  #332065;
    border: 3px solid rgb(253, 255, 255);
    color: rgb(255, 255, 255);
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.signin-signup .social-text p{
    position: relative;
    color: rgb(255, 255, 255);
    display: flex !important;
    text-align: center;
}

@media  screen and (max-width: 768px) {
    .container .panels-container .left-panel{
        display: none !important;
    }

    .container .forms-container{
        top: 0;
        left: -100px;
        right: 0px;
        height: 100%;
        position: absolute;
        z-index: 9999; 
    }

    

    .right-panel{
        padding: 0rem 0% 0rem 0%;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-column: 1 / 1;
        grid-row: 1 / 1;
        padding: 0 0rem;
    }
    
    .title{
        font-size: 2rem;
        color: #332065;
        margin-bottom: 10px;
    }

    .social-icon:hover{
        color: #332065;
        border-color: #332065;
    }
    
    .panels-container .panel .content img{
        height: 110px !important;
    }
}












































































