@charset "utf-8";
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');
:root {
	--main-raspberry: #03BC03;
	--main-hover: #009300;
	--main-40-outline: #05E105;
	--main-20--hover: #CDF2CD;
	--main-15: #D9F5D9;
	--main-5--white-hover: #F2FBF2;
	--menu-raspberry: #03BC03;
	--secondary-blue: #4B59ED;
	--secondary-blue-hover: #222DA3;
	--secondary-blue-7: #F2F3FE;
	--gray-text-light: #98A1B3;
	--gray-text: #787B83;
	--gray-outline: #E6EBF6;
	--gray-light: #C1C7D2;
	--gray-bg: #F3F3F6;
	--green-text: #0D9055;
	--orange-text: #E56F02;
	--red-text: #EB5757;
	--red-negative-bg: #FDD3D3;
	--red-negative-hover: #FBACAC;
	--dark: #080A20;
	--bg-page: #F7F8FD;
}

body {
	background:  #9DC59D;
	margin: 0px;
	background-size: cover;
}

.loginch {
	flex-shrink: 0;
	border-radius: 1.125rem;
	border: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.30);
	backdrop-filter: blur(3px);
	animation: drop 1s linear forwards;
	position: absolute;
	width: 28.25rem;
	left: calc(50% - 14.12rem);
	top: calc(50% - 15.31rem);
	height: 30.625rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.loglogo img{
	width: 352px;
	flex-shrink: 0;
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.ttext {
	color: #000;
	font-family: "SF Pro Display";
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	width: 1.625rem;
	height: 1.5rem;
	margin-left: 1rem;
	margin-top: 0%;
}

.container {
	padding-top: 1.7rem;
}

input[type=text],
input[type=password] {
	border-radius: 1.375rem;
	border: none;
	background: #FFF;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 20.875rem;
	height: 2.75rem;
	flex-shrink: 0;
	padding-left: 1rem;
	margin-bottom: 1rem;
	font-family: "SF Pro Display";
}

input[type=text]:focus {
	outline: 2px solid var(--main-40-outline);
}

input[type=password]:focus {
	outline: 2px solid var(--main-40-outline);
}

button[type=submit] {
	width: 30%;
	height: 2.75rem;
	flex-shrink: 0;
	border-radius: 1.375rem;
	background: var(--main-raspberry);
	display: block;
	margin-top: 2.13rem;
	border-style: solid;
	border-color: var(--darkblue, #393185);
	border: none;
	margin-left: auto;
	margin-right: auto;
}

button[type=submit]:hover {
	cursor: pointer;
	background: var(--main-hover);
}

.giristext {
	width: 4.25rem;
	color: #FFF;
	text-align: center;
	font-family: "SF Pro Display";
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5rem;
	/* 150% */
}

@keyframes drop {
	0% {
		transform: translateY(-200px);
		opacity: 0;
	}

	5% {
		opacity: .7;
	}

	50% {
		transform: translateY(0px);
		opacity: 1;
	}

	65% {
		transform: translateY(-17px);
		opacity: 1;
	}

	75% {
		transform: translateY(-22px);
		opacity: 1;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}