
@import url('https://fonts.googleapis.com/css?family=Poppins');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: url("fondo_avocados_white.png");
    background-position: center ;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #077a3b!important;  

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 20px;
}


.form-container{
    display: flex;
    width: 1000px;
    height: 600px;
    border: 3px solid rgba(248, 248, 248, 0.2);
    border-radius: 30px;
    background: rgba(248, 248, 248, 0.2);
    backdrop-filter: blur(20px);
    /* overflow: hidden; */
}

/*========= FIRST COLUMN ============ */

.col-1{
    display: flex;
    align-items: center;
    justify-content: baseline;
    padding-top: 20px;
    flex-direction: column;
    width: 55%;
    background: rgb(130, 172, 231, 0.1);
    backdrop-filter: blur(30px);
    border-radius: 0 30% 20% 0;
    transition: border-radious .3s;
}

.col-1 .col-1-custom{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: column;    
}

.image-layer{
    position: relative;

}

.form-image-main{
    width: 400px;
    animation: scale-up 3s ease-in-out alternate infinite;
    z-index: 9999;
}

.form-image{
    position: absolute;
    left: 0;
    width: 400px;
}

/* ================= FORM ANIMATION================== */

.coin{
    animation: right-left 3s ease-in-out alternate infinite;    
}

.dots{
    animation: scale-up 3s ease-in-out alternate infinite;    
}

.spring{
    animation: up-down 3s ease-in-out alternate infinite;
    z-index: 4;
}

@keyframes right-left{
    to{
        transform: translateX(-30px);
    }
}


@keyframes up-down{
    to{
        transform: translateY(10px);
    }
}

@keyframes scale-down{
    to{
        transform: scale(0.95);
    }
}

@keyframes scale-up{
    to{
        transform: scale(1.05);
    }
}

/* ==========FEATURES   WORDS ======*/

.featured-words{
    text-align: center;
    color: #fff;
    width: 300px;
}

.featured-words span{
    font-weight: 600;
    color: #21264D;
}


/*========= SECOND COLUMN ============ */

.col-2{
    position: relative;
    width: 45%;
    padding: 20px;
}

.btn-box{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn{
    font-weight: 500;
    padding: 5px 30px;
    border: none;
    border-radius: 30px;
    background: rgba(205, 213, 94, 0.1);
    color: rgb(205, 213, 94);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: .2s;
    height: 30px;
}

.btn4{
    font-weight: 500;
    padding: 5px 30px;
    border: none;
    border-radius: 30px;
    background: rgba(205, 213, 94, 0.1);
    color: rgb(35, 199, 35);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: .2s;
    height: 30px;
}


.btn-1{
    background: #21264D;
}

.btn:hover{
    opacity: 0.85;
}

.login-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 4vw;
    transition: .3s;    
}

.form-title{
    margin: 20px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-top: 80px;
}

.form-inputs{
    width: 100%;    
}

.input-box{
    position: relative;
}

.input-field{
    width: 100%;
    height: 55px;
    padding: 0 15px;
    margin: 10px 0;
    color: rgb(205, 213, 94);
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 10px;
    outline: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
::placeholder{
    color: #fff;
    font-size: 15px;
}

.input-box .icon{
    position: absolute;
    top: 50%;
    right: 15px;
    transition: translateY(-50%);
    color: black;

}

.forgot-pass{
   display: flex;
   justify-content: right;
   gap: 5px; 
}
.forgot-pass a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.forgot-pass a:hover{
    text-decoration: underline;
}

.input-submit{
  display: flex;
  align-items: center;
  justify-content: center;   
  gap: 10px;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  margin: 10px 0;
  color: rgb(205, 213, 94);
  background: #21264D;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: .3s;
}

.input-submit:hover{
    gap:15px
}

@media(max-width: 892px){
    .form-container{
        width: 400px;
    }

    .col-1{
        display: none;
    }

    .col-2{
        width: 100%;
    }
}