.wrapper {
    position: relative;
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: "Poppins", sans-serif;
    align-items: center;
    display: flex;
	flex-direction: column;
}
li,a {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: white;
    text-decoration: none;
}
.gap1 {
    margin-top: 30px;
}
.btnn {
    width: max-content;
    padding: 0 25px;
    border-radius: 25px;
    background-color: #00FF00;
    border: 1px solid #00ff15;
    font-size: 17px;
    font-weight: bold;
}

.btnn:hover {
    color:#00FF00;
    background-color: black;
    border:1px solid #00FF00;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 1%;
}

section{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(0.91);
}
.language__drop__down{
    outline: none;
    border: 0px   rgb(0, 0, 0);
    background-color: #000000;
    color: white;
    padding: 5px;
    height: 100%;
    border-radius: 4px;
    font-size: 16px;    
   
}
 
.box_globe{
    outline: none;
    border: 2px solid rgb(255, 255, 255);
    color: white;
    padding: 10px;
    height: 40px;
    border-radius: 4px;
    font-size: 16px;
}
.cta,button{
    color: rgb(0, 0, 0);
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    width: max-content;
    height: 50px;
    font-size: 16px;
}
.logo{
    width:210px;
    height: 100%;
    cursor: pointer;
}
.nav_links{
    list-style-type: none;
    margin-top: 10px;
     
}
.nav_links li {
    display: inline-block;
    padding: 0px 30px;
}
.nav_links li a{
    transition: all 0.4s ease 0s;
}
.nav_links li a:hover {
    color: rgb(0, 0, 0);
    font-weight: bold;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    width: 80px;
    height: 34px;
    font-size: 30px;
}

#signin {
    background-color: #00FF00;
    border: 1px solid #00ff15;
     
}
#signin:hover{
    background-color: black;
    color: #00FF00;
    border:1px solid #00FF00;
}

.container {
    text-align: center;
    margin-top: 50px;
    
}
#heading {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 60px;
}


/* Forms */
.form{
	height: auto;
	width: 400px;
	padding: 0px 0px 15px 0px;
	border: 2px solid #45F075;
    background-color: rgb(0, 0, 0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	/* background-color: rgb(1, 0, 22); */
}

.buttons{
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-around;
	height: 50px;
	float: left;
}
.buttons .btn{
	display: flex;
	justify-content: center;
    /* background-color: #00FF00; */
	align-items: center;
	font-size: 25px;
	width: 50%;
	cursor: pointer;
}
.btn:hover {
    color:black;
    background-color: #00FF00;
    border:1px solid #00FF00;
}

#chbox:checked ~ .SignUp_form{
	display: flex;
}

#chbox:checked ~ .login_form{
	display: none;
}

#chbox:checked + .layer{
	left: 50%;
}
#chbox:checked ~ .layer2{
	left: 50%;
}
#chbox{
	display: none;
}

.layer{
	content: '';
	height: 50px;
	width: 50%;
	background-color: transparent;
	float: right;
	position: absolute;
	left: 0px;
	top: 0px;
}
.layer2{
	content: '';
	height: 50px;
	z-index: -1;
	width: 50%;
	background-color: rgb(0, 255, 170);
	float: right;
	position: absolute;
	left: 0px;
	top: 0px;
}


/* LOGIN FORM */
.form .login_form{
    display: flex;
    flex-direction: column;
}

.form .login_form input{
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    padding: 5px;
}

hr{
    height: 5px;
    background-color: black;
    width: 320px;
    margin: 15px -20px 5px -20px;
}

.tag{
    text-align: center;
    font-size: 20px;
    margin: 7px 0px 7px 0px;

    /* margin: auto; */
}


.icons{
    display: flex;
    justify-content: center;
    align-items: center;
}

.fab {
    padding: 20px;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    margin: 2px 2px;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
    
}

.fa-google {
    background: #dd4b39;
    color: white;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.submit{
    width: 70px;
    border: none;
    padding: 7px;
    border-radius: 2px;
    background-color: cadetblue;
    outline: none;
    cursor: pointer;
}

.form .SignUp_form{
	display: none;
	flex-direction: column;
}

.form .SignUp_form input{
	border: none;
	border-bottom: 1px solid black;
	outline: none;
	padding: 5px;
	margin: 0px;
}