﻿@import url('http"//fonts.googleapis.com/css?family=Poppings:200,300,400,500,600,700,800,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;

}
section .imgbx{
    position: relative;
    width: 50%;
    height: 100%;
}
section .imgbx:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(255deg,#e91e63,#03a9f4);
    z-index: 1;
    mix-blend-mode: screen;
}
section .imgbx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .contentbx{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
section .contentbx .formbx{
    width: 50%;
}
section .contentbx .formbx h2{
    color: #607d8b;
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 4px solid #ff4584;
    display: inline-block;
    letter-spacing: 1px;
}
section .contentbx .formbx .inputbx{
    margin-bottom: 20px;
}

section .contentbx .formbx .inputbx span{
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #607d8b;
    font-size: 300px;
    font-size: 16px;
    letter-spacing: 1px;
}
section .contentbx .formbx .inputbx .input{
    width: 100%;
}
.text-style{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;
    color: #607d8b;
    background: transparent;
    border-radius: 30px;
}
.btn-style{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    background: transparent;
    border-radius: 30px;
    background: #03a9f4;
    border:none;
    font-weight: 500;
    cursor: pointer;

}
.btn-style:hover{
    background: #03a9f4;
}
.remember{
    margin-bottom: 10px ;
    color: #607d8b;
    font-size: 400;
    font-size: 14px;
}

@media (max-width: 768px) {
    section .imgbx {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    section .contentbx {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
        
    }
    section .contentbx .formbx {
        width: 100%;
        padding: 40px;
        background: rgba(255 255 255 /0.9);
        margin: 10px;
        border-radius:20px;
    }
}