@charset "UTF-8";body,html {
    padding: 0;
    margin: 0;
    font-family: Source Sans Pro,Arial,Helvetica,sans-serif;
    font-size: 14px
}

body,div#__next>div>div.container,html {
    min-height: 100vh
}

html>body {
	display: flex;
	justify-content: center;
	align-items:  center;
	min-height:  100vh;
	background: radial-gradient(circle, #333 10%, transparent 11%),radial-gradient(circle at bottom left, #333 5%, transparent 6%),radial-gradient(circle at bottom right, #333 5%, transparent 6%),radial-gradient(circle at top left, #333 5%, transparent 6%),radial-gradient(circle at top right, #333 5%, transparent 6%);
    background-size: 3em 3em;
    background-color: rgb(20,20,20);
    font-family: Source Sans Pro,serif
}

a {
    color: #0d6efd;
    text-decoration: none
}

* {
    box-sizing: border-box
}

.wrapper{
	min-width: 420px;
	color: #FFFFFF;
    display: inline-block;
    background-color: rgba(25,25,25, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
	border-radius: 1rem;
	padding: 10px 20px;
}
.wrapper h1{
	text-align: center;
    margin-bottom: 10;
    font-size: 36px;
    font-weight: 700;
}
.wrapper .input-box{
	width: 100%;
	height: 50px;
	margin: 15px 0;
	position: relative;
}
.input-box input{
	width: 100%;
	height: 100%;
	background: #131313;
	outline: none;
	border: 1px solid #fff;
	border-radius: 0.5rem;
	font-size: 16px;
	color: #fff;
	padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
	color: #fff;
}
.input-box i{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50);
	font-size: 20px;
}
.wrapper .remember{
	display: flex;
	justify-content: space-between;
	font-size: 14.5px;
	margin: 0px 0px 10px;
	transition: 0.2s;

}
.remember label input{
	accent-color: #0d6efd;
	margin-right: 3px;
	transition: 0.2s;
}
.remember a{
	color: #FFFFFF;
	text-decoration: none;
	transition: 0.2s;
}

.remember a:hover{
	text-decoration: underline;
	color: #0d6efd;
	transition: 0.2s;
}

.wrapper .btn{
	width: 100%;
	height: 45px;
	background: #0d6efd;
	border: none;
	outline: none;
	border-radius: 0.5rem;
	color: #FFFFFF;
	font-size: 25px;
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
	cursor: pointer;
	padding: 3px;
	font-weight: 600;
	transition: 0.2s;
}
.wrapper .btn:hover{
	background: #0a58ca;
	transition: 0.2s;
}
.wrapper .register-link{
	font-size: 14.5px;
	text-align: center;
}
.wrapper .register-link p a{
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 600;
	transition: 0.2s;
}
.wrapper .register-link p a:hover{
	text-decoration: underline;
	color: #0d6efd;
	transition: 0.2s;
}