@charset "UTF-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	/*background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(75,14,154,1) 35%, rgba(0,212,255,1) 100%); */
	background: linear-gradient(90deg, rgb(214, 198, 50) 0%, rgb(245, 243, 187) 35%, hwb(192 89% 2%) 100%);
	display: flex;
	position: relative; 
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url('../assets/imgs/sskru-logo.jpg') no-repeat;
	background-size: 100%; 
	background-position: center;
}

.header {
	position: absolute;
	text-align: center;
	top: 30px;
	color: #997404;
	text-shadow: 1px 1px #353517;
}

.header p h1 {
	font-weight: bolder;
}

.wrapper {
	width: 420px;
	background: #d4b043;  
	/*background: transparent; */
	opacity: 0.6;
	border: 2px solid rgba(255, 255, 255, .2);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
	color: #fff;
	border-radius: 10px;
	padding: 30px 40px;
}

.wrapper h1 {
	font-size: 36px;
	text-align: center;
	color: #fff;
	text-shadow: 2px 2px #645124;
}

.wrapper .input-box {
	position: relative;
	width: 100%;
	height: 50px;
	margin: 30px 0;
}

.input-box input {
	width: 100%;
	height: 100%;
	background: transparent;
	outline: none;
	border: 2px selod rgba(255, 255, 255, .2);
	border-radius: 40px;
	font-size: 16px;
	color: #16181f;
	padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
	color: hsl(0, 7%, 97%);
}

.input-box i {
	position: absolute;
	right: 20px;
	top: 30%;
	transform: translate(-50%);
	font-size: 20px;
}

.wrapper .show-password {
	display: flex;
	justify-content: space-between;
	font-size: 14.5px;
	margin: -15px 0 15px;
	color: rgb(2, 19, 68);
}

.show-password label:hover {
	cursor: pointer;	
	text-decoration: underline;	
}

.show-password label input {
	accent-color: #16151a;
	margin-right: 3px;
}

.wrapper .btn {
	width: 100%;
	height: 45px;
	background: #fff;
	border: none;
	outline: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	cursor: pointer;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

.wrapper .btn:hover {
    opacity: 0.85;

}

