body 
{
	display: flex;
	justify-content: center;
	align-items: center;

	background-size: cover;
	background-position: center;
	 
}

main {
	padding-top: 0;
	padding-bottom: 7%;
}

.logo-frame {
	display: flex;
	align-items: center;
	position: relative;
	height: 45px;
	max-height: 45px;
	top: 16.93px;
}

.logo {
    width: 481.8900146484375px;
}

.navigation a
{
	position: relative;
	font-size: 1.1em;
	color: white;
	text-decoration: none;
	font-weight: 500;
	margin-left: 40px;
}

.navigation a::after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 3px;
	background: white;
	border-radius: 5px;
	transform: scaleX(0);
	transition: .3s;
}

.navigation a:hover::after
{
	transform: scaleX(1);
}


.navigation .btnLogin
{
	background: rgba(10, 10, 10, 0.0);
	border: 1px solid black;
	outline: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1.1em;
	color: black;
	font-weight: 200;
	margin-top: -10px;
	margin-left: 40px;
    height: 100%;
	transition: .5s;
}

.navigation .btnLogin:hover
{
    background: rgba(0,0,0, 0.3);
	box-shadow: rgba(255,255,255, 0.3);
}


.welcome-login {
    align-self: stretch;
	color: #475059;
	text-align: center;
	font-family: "Space Mono", monospace;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.wrapper
{
	position: relative;
	width: 410px;
	height: 322px;
	padding-top: 65px;
	padding-bottom: 65px;
	padding-left: 80px;
	padding-right: 80px;
	/* background: rgba(200, 200, 200, 0.3); */
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
	
    display: flex;

    justify-content: center;
	align-items: center;
	
    overflow: hidden;
	transition: 2s;
}

.login {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
	align-self: stretch;
	width: 100%;
	height: 100%;
}

.login-text {
	align-self: stretch;
	color: #1293BB;
	font-family: "Space Mono";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0;
	padding: 0;
}

.input-field {
    width: 100%;
    margin-bottom: 11px;
	padding-left: 14.795px;
	padding-right: 14.795px;
	height: 32px;
	align-content: center;
    border: 1.5px solid var(--Cold-3, #98A9B3);
	color: #98A9B3;
	font-family: 'Barlow', Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 100%;
}
.input-field:not(:placeholder-shown) {
	color: #475059;
}
.input-field:focus {
	outline: none;
}

.sign-in-btn
{
	display: flex;
	flex-direction: row;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding-left: 25px;
	padding-right: 25px;
	width: 50%;
	height: 38px;
	border-radius: 20px;
	border: 1px solid #475059;
	background: #FFF;
	outline: none;
	cursor: pointer;
	color: #000;
	text-align: center;
	font-family: 'Barlow', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 14px;	
}
.sign-in-icon {
	width: 15px;
	height: 15px;
	margin-left: 5px;
}

.forgot-password {
	color: #98A9B3;
	font-family: 'Barlow', Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.invalid-login-message {
	font-size: 13px;
	color: red;
}