@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Work+Sans:wght@400;500&display=swap');
    
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Work Sans', sans-serif;
}

:root {
        --main:#00a2dd;
        --heading:rgb(0 10 45);
        --para:#777;
        --para-tint:#e4e4e4;
        --white:#fff;
        --black:#212529;
        --helper:#8490ff;
        --helper-tint:#f3f4ff;
        --bg:rgb(249 249 255);
        --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
        --gradientSupport: -webkit-linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
        --shadow: 0px 0px 20px 0px rgb(132 144 255 / 20%);
}

h1, h2, h3, h4{
    font-family: 'Poppins', sans-serif;
}
h1{
    color: var(--heading);
    font-size: 6rem;
    font-weight: 600;
}
h2{
    font-size: 1.9rem;
    font-weight: 600;
}
p{
    color:var(--white);
    line-height: 1.6;
    font-size: 1.7rem;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
body{
    height:100vh;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}
.main-section{
    height:100vh;
    width:100% ;
    background-size: cover;
    display: flex;
}
input, select, textarea{
    background-color: var(--bg);
  }
input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 3;
    }
    .formerror{
        color: red;
    }
    

/* ===========================================
Right Section Start
======================================= */
.id{
    visibility: hidden;
    position: absolute;
}
.right-side{
    flex:32%;
    background-color: #37517e;
}
.right-side .main-heading{
    text-align: center;
    color:var(--white);
    margin-bottom: 50px;
    font-size: 2.0rem;
    margin-top: 20%;
    margin-bottom: 20%;
}
.right-side .main-heading h3{
    display: inline;
}
.right-side .secondary-heading h2{
    margin-left: 20%;
    margin-right: auto;
    font-weight: 400;
    color:var(--white);
    font-size: 1.7rem;
    margin-bottom: 10%;
}
.right-side .main-para p{
    font-size:1rem;
    margin-left: 25%;
    margin-right: 10%;
    margin-bottom: 5%;
}
.right-side .design .circle{
    height: 150px;
    width: 150px;
    background-color:var(--main);
    border-radius: 50%;
    display: inline-block;
    margin-left:75%;
    margin-top: 10%;
    overflow: hidden;
}
/* ===========================================
Left Section Start
======================================= */
.section {
    padding: 9rem 0;
  }
  .grid {
    display: grid;
    gap: 9rem;
  }
.left-side{
    flex:68%;
    background-color: var(--white);
    font-weight: 400;
}
.left-side .back{
    float:right;
    color: var(--black);
}
.left-side .back i{
    font-size: 20px;
    margin: 20px;
}
.left-side .back i:not(:root) {
    overflow: hidden;
}
.log-main{
    margin-top: 10%;
}
.log-heading{
    padding: 10px;
    text-align: center;
}
.log-para{
    padding: 10px;
    text-align: center;
}
.log-para a{
    color: var(--main);
    font-weight:bold;
}
.log-data{
    display: flex;
    padding: 20px;
    font-size: 15px;
    background-color: #fff;
    flex-direction: column-reverse;
    gap:0.5rem;
}
#cpword{
    visibility: hidden;
    position: absolute;
}
#register{
    visibility: hidden;
    position: absolute;
}
#link2{
    visibility: hidden;
    position: absolute;
}
/* error{
    font-size:15px;
    margin-top:3px;
    margin-left: 10px;
    color:red;
    display:block;
} */
.log-data span{
    margin-left: 30%;
    margin-bottom: 5%;
    font-size: 15px;
}

.log-data label{
    margin-left: 30%;
    margin-bottom: 4%;
    font-size: 15px;
}
input:focus + label {
    color:var(--main);
}

.log-data input{
    padding:10px;
    margin-top:10px;
    margin:auto;
    display: block;
    width: 40%;
    margin-top: -4%;
    outline:none;
    border:1px solid #a7a7a9ab;
    border-radius: 2px;
}
input:focus{
    border: 1px solid var(--main);
}
.log-btn{
    padding: 20px;
    text-align: right;
}

.log-btn a{
    font-size: 14px;
    padding-right: 30%;
    color:var(--black);
}
.log-btn a:hover{
    color:var(--main);
}
.log-btn button{
    background-color: var(--main);
    padding:10px;
    margin-top:10px;
    margin:auto;
    display: block;
    width: 40%;
    font-size: 15px;
    border: none;
    color:var(--white);
    border-radius: 4px;
    cursor:pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    /* transition: all 0.3s ease 0s; */
}
.log-btn button i{
    float: left;
    font-size: 15px;
    color:var(--white);
    padding: 2px;
    padding-left: 6px;
}

/* placeholder */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:var(--para-tint);
    font-size: 15px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:var(--para-tint);
    font-size: 15px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:var(--para-tint);
    font-size: 15px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:var(--para-tint);
    font-size: 15px;
}
/* ===========================================
footer Section Start
======================================= */
.footer{
    height: 2rem;
    width:100%;
    background-color:var(--white);
    opacity: 0.5;
    position:absolute;
    bottom: 0;
    margin-top: -100vh;
    text-align: center;
}
.footer p{
    font-size: 1rem;
    color:var(--black);
    line-height: 2rem;
    font-weight: 400;
}

/* ===========================================
Responsive Section Start
======================================= */

   /* 1200px */
   @media(max-width:75em){
    .main-section{
        width:100%;
    }
    .right-side{
        visibility: hidden;
        position: absolute;
    }
    .left-side{
        justify-content: center;
        align-items: center;
    }
    }

    /* 980px */
    @media(max-width:61em){
        body{
            display: flex;
            flex-direction: row;
        }
        .right-side{
            visibility: hidden;
            position: absolute;
        }
        .right-side .design{
            visibility: hidden;
            position: absolute;
        }
        .left-side{
            justify-content: center;
            align-items: center;
        }
        .log-heading{
            margin-top:20%;
            text-align: center;
        }
        .log-data input{
            width: 60%;
            margin-left: 20%;
        }
        .log-btn button{
            margin-left: 20%;
            width:60%
        }
        .log-data label{
            margin-left: 20%;
        }
        .log-data span{
            margin-left: 20%;
        }
        .log-btn a{
            padding-right: 20%;
        }
    } 
    