  /**Intro Section**/

            *{
                padding: 0; /*Ass 1: In body*/
                margin: 0; /*Ass 1: In body*/
                box-sizing:border-box; /*Ass 1: In body*/
				font-weight: bold;
            }
html{
    font-size: 10px;
    scroll-behavior: smooth;
    font-family: sans-serif, serif;
}
            
a{
    text-decoration:none;
}

body{
    min-height: 100vh; /*Ass 1: In body*/
   /* width: 100%;*/
    display: flex;	/*Ass 1: In body*/
    align-items: center; /*Ass 1: In body*/
    justify-content: center; /*Ass 1: In body*/
	background: url(hidden_power.jpg) no-repeat; /*Ass 1: In body*/
	background-size: cover;
	background-position:center;
	
}

.container{
	width: 35%;
	background: rgba(255, 10, 100, .7);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .2);
	border-radius: 12px;
    padding: 20px;
    float: right;
    margin: 50px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	
}

.container h1, body h2{
	font-size: 36px;
	text-align: center;
	font: #fff;
	border-radius: 12px;
}

.container .field{
	width: 100%;
	height: 50px;
	position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 30px 0;
}

/*.field input{   /*for the sign in page*//*
	width: 100%;
	height: 100%;
	background: transparent;
	border: 1px solid #ccc;
	outline: none;
	/*border: 2px solid rgba(255, 255, 255, 0.2);*//*
	border-radius: 5px;
}*/

.field label{
	color: #fff;
	  position:absolute;
    left:10px;
    transition: .5s ease all;
}

.container .remember-forgot { 
	display: flex;
	justify-content: space-between;
	font-size: 14.5px;
	margin: -15px 0 15px;
}

.remember-forgot label input{
	accent-color: white;
	margin-right: 3px;
	
}


 .section-title{
    font: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2rem;
    text-align: center;
}
button{
    padding: 10px 35px;
    /**width:100%;**/
    background-color: aqua;
    border: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .7s ease all;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	cursor: pointer;
	float: right;
}

button:hover{
    background:blue;
    letter-spacing: 4px;
	
}

label.top{
    transform: translateY(-20px);
}
.container .test {      /*Only on sign in page.*/
    text-align: center;
    border-style: dotted;
    border-color: aqua;
}

form button[type="submit"]:hover{
     color:white;
    background-color:blue;
}

.remember-forgot a{
	color: #fff;
	text-decoration: none;
}

.remember-forgot a:hover{
	text-decoration: underline;
}

.container .register-link{
	font-size: 14.5px;
	text-align: center;
	margin: 20px 0 15px ;
}

.register-link p a{
	color: white;
	text-decoration: none;
	font-weight: 600;
}
.register-link p a:hover{
	text-decoration: underline;
}

.section-title span{
    color: deeppink;
}
.form{
    /*max-width: 320px; instead of 400px*/
} 

#title, textarea{
    width: 100%;
}

textarea{
    margin: 100px, 10px;
	height: 200px;
}

.field input, input[type=text], select, textarea, form input[type=password]{
	/*width: 100%;*/
	padding: 12px;
	border: 1px solid #ccc;
	
	resize: vertical;  /*to allow the user to resize the input area*/
    
    width: 100%;
	height: 100%;
	background: transparent;
	
	
	/*border: 2px solid rgba(255, 255, 255, 0.2);*/
	border-radius: 5px;
}
label {
	 padding: 12px 12px 12px 0;
	 display: inline-block;
}

.col-25{
	float: left;
	width: 25%;
	margin-top: 6px;
}
.col-75{
	float: left;
	width: 75%;
	margin-top: 6px;
}
.row::after{
content: "";
display: table;
clear: both;
}
/**From sign_up.php**/
select#gender{
    width:auto;
}
.smallField {
    width:auto;
}
@media screen and (max-width: 900px){
	.col-75, .container{
		width: 100%;
		margin-top: 0;
		width: auto;
	}
}