
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: auto;
}
body{
    background-image: linear-gradient(110deg, #99f793 20%, rgb(251 173 231) 80%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
}

.box-form{
    margin: 2% auto;
    width: 85%;
    display: flex;
    flex: 1 1 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 6px #090b6f85;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    flex-direction: column;
}
.box-form div{
    height: auto;
}
.box-form .left{
    background: #fff;
    background-repeat: no-repeat;
    background-image: url(../img/Logo.png);
    background-size:contain;
    background-position: center;
}
.box-form .left h4{
    color: rgb(108, 247, 16);
    font-size: 8vmax;
    text-transform:capitalize;
}
.box-form .left p span{
    color: crimson;
}
.box-form .left .overlay {
    padding:50px;
    width: 100%;
    height: 100%;
    background: #690a61ad;
    overflow: hidden;
    box-sizing: border-box;
  }
  .box-form .left .overlay h1 {
    font-size: 5vmax;
    line-height: 1;
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 20px;
    color: rgb(255, 253, 254);
  }
  .box-form .left .overlay p{
    color: #fff;
    font-size: 4vmax;
    text-transform:capitalize;
    margin-top: 30px;
}

.box-form .right{
    overflow: hidden;
    padding: 8%;
}

.box-form .right h4{
    color: crimson;
    font-size: 7vmax;
    font-weight:bold;
    margin-bottom: 25px;

}
.box-form .right .inputs{
    overflow: hidden;
}
.box-form .right input{
    width: 100%;
    padding: 10px;
    margin-top: 25px;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 2px solid rgba(104, 103, 103, 0.867);
}
.box-form .right button{
    margin: 8px;
    padding: 5px;
    box-shadow: 0px 4px 20px 0px #49c628a6;
    background-image: linear-gradient(120deg, rgba(10, 236, 47, 0.8) 15%, #eb0f46 100%);
    border-radius: 50px;
    border: none;
    color: floralwhite;
    font-size: 4vmax;
    float: right;
    width: 50%;
    cursor: pointer;
}





/* Media Scrin */
@media (min-width:900px) {
    .box-form{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .box-form .left{
        background-repeat:no-repeat;
        background-size: contain;
        width: 50%;
    }
    .box-form .left h4{
        font-size:6vmax;
    }
  
    .box-form .left .overlay p{
        font-size: 2vmax;
    }
    .box-form .right{
        margin: 0 auto;
    }
    .box-form .right h4{
        font-size: 5vmax;
    }
    .box-form .right input{
        font-size: 1.5vmax;
        color: #0c8f0c;
        font-weight:bold;
        border-bottom: 2px solid salmon;
    }

        .box-form .right button{
        margin-top: 25px;
        padding: 5px 8px;
        width: 120px;
        font-size: 2vmax;

    }

}