/* -- import Google font-- */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
*{
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

html,body{
  place-items: left auto; 
  background-color: #000;
  background-image: url(../images/background.jpg);
  background-position: center;
  background-size: cover;
  display: table;
  height: 100%;
  width: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Below makes selected text in the described color */
::selection{
  background: #a8dadc;
  color: #fff;
}


/* ----------Login & SignupForm---------------- */

.wrapper{
  height:550px;
  width: 100%;
  margin-top: 4vh;
  margin-left: 66px;
  padding: 0;
  float:left;
  position: fixed;
  overflow: hidden;
  max-width: 390px;
  background: rgb(62,49,77);
  background: -moz-linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  background: linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3e314d",endColorstr="#81699f",GradientType=1); 
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0,0,0,1);
}
.wrapper .title-text{
  color:rgb(246,157,24);
  display: flex;
  width: 200%;
}
.wrapper .title{
  width: 50%;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid #a8dadc;
  border-radius: 5px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #1d3557;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 5px;
  /* background: #a8dadc; */
  background: rgb(134,142,156);
  background: -moz-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: -webkit-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#868e9c",endColorstr="#ced8eb",GradientType=1); 
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color:#1d3557;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #45efe3;
}
#login:checked ~ label.signup{
  color: #45efe3;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}

.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.form-inner form .field{
  height: 50px;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  background-color: rgb(223, 215, 224);
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: #45efe3;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #b3b3b3;
}
.form-inner form .pass-link{
  margin-top: 5px;
}
.form-inner form .signup-link{
  color: #c7c7c7;
  text-align: center;
  margin-top: 30px;
}
.policy-data, .form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #45efe3;
  text-decoration: none;
}
.policy-data:hover, .form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  color: rgb(246,157,24);
  text-decoration: underline;
}

form .btn{
  height: 50px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  /* background: #a8dadc; */
  background: rgb(134,142,156);
  background: -moz-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: -webkit-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#868e9c",endColorstr="#ced8eb",GradientType=1); 
  border-radius: 5px;
  transition: all 0.4s ease;;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color:#000;
  padding-left: 0;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

form .btn input[type="submit"]:hover {
  color: #000;
  background: rgb(246,157,24);
  background: -moz-linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  background: linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f69d18",endColorstr="#ffffff",GradientType=1); 
}

/* Radio-Button */

/* The container */
.cont {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;  
  margin-top: 8px;  
  cursor: pointer;
  font-size: 14px;
  color:#ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.cont .ina {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgb(223, 223, 223);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cont:hover .ina ~ .checkmark {
  background-color: rgb(255, 250, 250);
}

/* When the radio button is checked, add a blue background */
.cont .ina:checked ~ .checkmark {
  background-color: rgb(246,157,24);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.cont .ina:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.cont .checkmark:after {
 	top: 5.5px;
	left: 5.56px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.ina2 {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#footer-data {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 5px;
  background: rgb(62,49,77);
  background: -moz-linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  background: linear-gradient(0deg, rgba(62,49,77,1) 0%, rgba(77,61,97,1) 35%, rgba(129,105,159,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3e314d",endColorstr="#81699f",GradientType=1); 
  z-index: 1030;
  color: #f1faee;
  font-size: 14px;
  margin: 0;
}  

#cookieButton1{
  border-radius: 7px;
  background: rgb(134,142,156);
  background: -moz-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: -webkit-linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  background: linear-gradient(0deg, rgba(134,142,156,1) 0%, rgba(152,164,184,1) 42%, rgba(206,216,235,1) 89%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#868e9c",endColorstr="#ced8eb",GradientType=1); 
}
#cookieButton1:hover{
  background: rgb(246,157,24);
  background: -moz-linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  background: linear-gradient(0deg, rgba(246,157,24,1) 33%, rgba(246,202,136,1) 59%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f69d18",endColorstr="#ffffff",GradientType=1); 
}

#loginText{
  position: fixed;
  padding-top:0px;
  margin-top: 100px;
  margin-left:460px;
  padding-left:20px;
  background-color: #000000c9;
  width:100%;
}

#heading{
  font-size: 100px;
  margin-bottom:-20px;
  color:white;
}

#subheading{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
  color:rgb(246,157,24);
}

#ponters{
  position: absolute;
  bottom: 20px;
  font-size: 1.6vw;
  padding:3.1vw;
}

ul {
  /* removing bullet */
  list-style-type: none;
}

li:nth-child(1),
li:nth-child(2),
li:nth-child(3) {
  /* display item as inline or inline-block */
  display: inline-block;
  padding-left:4.5vw;
  padding-right:4.5vw;
  color: #ffffff;
}
