*{
    box-sizing: border-box;
}

body{
    display: flex;
    margin: 0px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: 100vh;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}


body .imageDiv{
    background-color: rgba(0, 0, 0, 0.514);
    width: 100%;height: 100%;
    border-radius: 12px;
    background-image: url('images/bitcoin-top-keyboard-with-plant.jpg');
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay ;

}

.logo img{
    width: 100%;
}

.logo{
    width: 100px;
    /* margin: 20px; */
    position: fixed;
    
    left:0;
    margin:50px;


    top: 0;
    z-index: 9999;
}


body .formDIv{
     width: 100%;height: 100%;
     overflow-y: scroll;
     display: flex;
     justify-content: center;
     align-items: start;
     padding: 15px;

    

}

.formDIv::-webkit-scrollbar{
    display: none;
}


form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.555);
    padding: 20px;
    border-radius: 12px;
    animation: enter 1s ease;
    
}

label{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(128, 128, 128);
}


label input{
    height: 50px;
    font-size: 16px;
    border: 1px solid rgb(167, 165, 165);
    padding: 10px;
    border-radius: 8px;
    transition: 0.5s ease;
}

label input:focus{
    outline: none;
    border: 1px solid #3ECEC6;
}

input::placeholder{
    font-size: 0.9rem;

}

form button{
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: #3ECEC6;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    position: relative;
    overflow: hidden;
}

.loader{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.575);
    position: absolute;
    top: 0;
    left:0;
    display: none;
    justify-content: center;
    align-items: center;
}

.spinner{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    border-top: 2px solid black;
    animation: spin 2s infinite;

} 

@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}


a{
    color:  rgb(128, 128, 128);
}
span{
    color: rgb(128, 128, 128) ;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

input[type="checkbox"]{
    accent-color:#3ECEC6;
}


.formDIv.login{
    align-items: center;
}




.msg{
    padding: 8px;
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 180px;
    background-color: white;
    border-radius: 8px;
    position: fixed;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: 0.5s ease;
    display: flex;
    box-shadow: 0px 0px 7px rgb(202, 201, 201);
}


.error{
    color: rgb(245, 67, 67);
    opacity: 1;
}
 
.success{
    color: rgb(56, 228, 56);
    transform: translateX(0px);
    opacity: 1;
}

@keyframes enter {
    from{
        transform: translateX(50px);
    }
    to{
        transform: translateX(0px);
    }
}



@media (max-width:900px) {

    .logo{
        display: none;
    }
   

    .formDIv{
        padding: 10px;
    }
    form{
        max-width: 100%;
    }
    .imageDiv{
        display: none;
    }
    
}