:root {
   
    --ff-primary: "Barlow Semi Condensed", sans-serif;
    --color-dark-green:#14664b;
    --color-text: #333333;
    --color-lime: #d4f5c4;
    --color-purple: #4949F2;
    --color-cream: #fcf6f0;
    --color-purple-faint: #E4E4FD;
    --color-red: #F24949;
    
}

main{
    display: grid;
    height: 90vh; /* Set the height of the container to the full viewport height */
    place-items: center;
}

#preloader{
    background: white url(/assets/images/Pulse-1s-277px.gif) no-repeat center;
    background-size: 5%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
  }


.center-me{
   
    background-color: var(--color-text);
    color: white;
    border: none;
    padding: 3px 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    
    
}

.center-me a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}



.img-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgb(20, 20, 40);
    max-width: 500px;
    height: 500px;
    padding-left: 1rem;

}

.img-container h2{
    color: white;
    margin-top: 2rem;
}

.img-container button{
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: .8rem;
    background-color: #33333392;
    border: none;
    color: white;
    transition: all ease-in-out .3s;
}

.img-container button:hover{
    color: black;
    background-color: white;
}



.main-box{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
}

/* form styles here */

.f-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
}

.f-header p{
    color: #999;
    font-size: .8rem;
}

.form-main{
    width: 100%;
    
}

.form{
   /* background-color: red; */
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   max-width: 400px;
   padding: 2rem;
   width: 100%;
   gap: 1rem;

}

.fields{
    margin-bottom: 1.6rem;
    width: 100%;
}

.fields label{
    font-size: .9rem;
    font-weight: 400;
    color: rgb(0, 157, 255);
}

.full-width{
    border: none;
    width: 100%;
    height: 40px;
}

.log{
    width: 100%;
    border: none;
    padding-block: .7rem;
    color: white;
    background-color: rgb(0, 157, 255);
    border-radius: 8px;
    margin-block: 2rem;
}

input[type="text"]::placeholder {
    color: #999; 
  }
input[type="password"]::placeholder {
    color: #999; 
  }


.checkbox{
    font-size: .8rem;
    color: #999;
}

.last-text{
    text-align: center;
    font-size: .9rem;

}

.last-text a{
    color: rgb(0, 157, 255);
}


@media (max-width: 1000px) {
    .main-box{
        flex-wrap: wrap;
    }

    .f-header{
        gap: 3rem;
    }
    .center-me{
        margin-block: 2rem;
    }

    .img-container{
        max-height: 400px;
    }
    .img-container h2{
        font-size: 1rem;
        font-weight: 400;
    }
    
}