@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	background-image: linear-gradient(to bottom right, rgba(255,255,255,.5), rgba(255,255,255,.6)),
	 url('../img/bg-pic.jpg');
	 background-size: cover;
	 /*background-repeat: no-repeat;*/
}
ul{
	padding: 0;
	margin: 0;
}
ul li{
	list-style: none;
}
a{
	text-decoration: none;
}
p{
	color: #8f8f96;
	padding: 0;
	margin: 0;
}
.text-color{
	color: #27c7cd;
}
.mass_rot{
    
}
.form-container{
	/*width: 650px;*/
    padding: 20px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 5px 20px rgb(0 0 0 / 15%);
    overflow: hidden;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

h1.center_head {
    color: coral;
}
.form-container h3{
	font-size: 30px;
	font-weight: 600;
}
.or{
	font-weight: 500;
}
.social-box{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}
.social-box li{
	margin: 0 15px;
}
.social-box li a{
	display: flex;
	justify-content: center;
	align-items: center;
}
.form{
	margin-top: 5px;
}
.form label{
	font-weight: 500;
	font-size: 15px;
	display: inline-block;
}
.input-container{
	position: relative;
	display: flex;
	align-items: center!important;
	margin: 20px 0;
	background: #fff;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 10px;
	padding: 10px 10px;
}
.input-container i{
	width: 10%;
	color: #27c7cd;
	font-size: 15px;
}
.input-box{
	width: 90%;
	border: none;
	outline: none;
	background: transparent;
	padding-left: 5px;
}
::placeholder {
  color: rgba(0,0,0,.5);
  opacity: 1;
}
.rem-box{
	text-align: left;
	margin-bottom: 20px;
}
h4.head_title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #2d0897;
    font-family: 'Anton', sans-serif;
    padding-top: 10px;
}

/*== checkbox-container ==*/
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border-radius: 11px;
  background-color: #fff;
  border: 1px solid #27c7cd;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #27c7cd;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-btn{
	display: block;
	width: 160px;
	margin: 0 auto;
	margin-bottom: 20px;
	border: none;
	border-radius: 10px;
	padding: 13px 15px;
	background: #2d0897;
	border: 1px solid #2d0897;
	color: #fff;
	border-radius: 33px;
	font-size: 16px;
	cursor: pointer;
}
.form-btn:hover{
	color: #fff;
}
.forgot-text{
	display: block;
	margin-top: 10px;
}
img.logo {
    width: 53%;
}
  .mass_rot {
    position: fixed;
    top: 0;
    left: 20px;
    right: 20px;
}
  .forgot {
    font-size: 13px;
}
  span.reg_now {
    font-size: 16px;
}

/*=== responsive ===*/
@media screen and (max-width: 600px) {
	.form-container {
	    width: 350px;
	    padding: 30px 20px;
        
	}
    img.logo {
    width: 30%;
}
    h4.head_title {
    font-size: 16px;
    
}
    .title_otprms{
        font-size:10px;
    }
    h1.center_head {
    font-size: 20px;
}
    p{
        font-size:12px;
    }
    .forgot {
    font-size: 12px;
}
    .mass_rot {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    font-size: 12px;
}
  
}
@media screen and (max-width: 400px) {
	body {
		height: 100%;
	}


	

	.input-container {
		margin: 4px 0;
	}
	.form-container {
		margin: 42px auto;
		width: 330px;
	}
}