@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');



*,
*::after,
*::before{
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;    
    font-size: 16px;
   
}

main{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 2rem;
    background-color: #B4CEFC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box{
    position: relative;
    width: 100%;
    max-width: 1020px;
    height: 640px;
    background-color: white;
    border-radius: 2rem;
    box-shadow: 0 60px 40px -30px rgba(0, 0, 0, 0.2);
}


.inner-box{
    position: absolute;
    width: calc(100% - 4.1rem);
    height: calc(100% - 4.1rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}


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

.carousel{
    position: absolute;
    height: 100%;
    width: 55%;
    top: 0;
    left: 45%;
    background-color: #407BFF;
    border-radius: 2rem;
}


.logo{
    display: flex;
    align-items: center;
    
}

.logo p{
    font-size: 1.6rem;
    font-weight: 00;
    font-weight: 500;
}

.logo p span{
    font-weight: 600;
    color: #407BFF;
}



form{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.logo img{
    width: 90px;
}


.heading h2{
    font-size: 2.2rem;
    text-transform: capitalize;
    color: #407BFF;
}

.heading h6{
    display: inline;
    margin-top: 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(172, 172, 172);
}

.heading a{
    text-decoration: none;
    color: rgb(83, 83, 83);
    font-size: 0.9rem;
    font-weight: 600;
}

.input-wrap{
    position: relative;
    height: 2rem;
    margin-bottom: 1.8rem;
    background-color: red;
}

.input-field{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: none;
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(137, 133, 133);
    padding: 0;
    font-size: 0.95rem;
}
label{
    position: absolute;
    left: 0;
    top: -30%;
    transform: translateY(-50%);
    color: rgb(177, 172, 172);
}

.submit-btn{
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    background-color: #407BFF;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    transition: ease-in-out 0.2s;
    cursor: pointer;

}

.carousel img{
    width: 100%;
    object-fit: fit;
}

.carousel p{
    display: none;
    margin: 20px;
    color: white;
    font-size: 1rem;
    padding-top: 40px;
    font-weight: 100;

}

.foot{
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.foot a{
    color:black
}



/* Hover styles */

.submit-btn:hover{
    background-color: #2e59b5;
   
}