
:root {
	--main-raspberry: #CC2F49;
	--main-hover: #E03A56;
	--main-40-outline: #EBACB6;
	--main-20--hover: #F5D5DB;
	--main-15: #F7E0E4;
	--main-5--white-hover: #FCF5F6;
	--menu-raspberry: #FF657F;
	--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;
	--spanish-gray: hsl(0, 0%, 60%);
	--sonic-silver: hsl(0, 0%, 47%);
	--eerie-black: hsl(0, 0%, 13%);
	--salmon-pink: hsla(344, 68%, 70%, 1);
	--sandy-brown: hsl(29, 90%, 65%);
	--bittersweet: rgb(240, 89, 129);
	--ocean-green: hsl(152, 51%, 52%);
	--davys-gray: hsl(0, 0%, 33%);
	--cultured: hsl(0, 0%, 93%);
	--white: hsl(0, 100%, 100%);
	--onyx: hsl(0, 0%, 27%);
}

body {
	background:  #dac2d1;
	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: 250px;
	flex-shrink: 0;
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.ttext {
	color: #000;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	font-family: "Poppins";
	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;

}

input[type=text]:focus {
	outline: 2px solid black;
}

input[type=password]:focus {
	outline: 2px solid black;
}

button[type=submit] {
	width: 35%;
	height: 2.75rem;
	flex-shrink: 0;
	border-radius: 1.375rem;
	background: var(--salmon-pink);
	display: block;
	margin-top: 2.13rem;
	border-style: solid;
	border-color: var(--salmon-pink);
	font-family: "Poppins";
	border: none;
	margin-left: auto;
	margin-right: auto;
}

button[type=submit]:hover {
	cursor: pointer;
	background: var(--bittersweet);
}

.giristext {
	width: 4.25rem;
	color: #FFF;
	text-align: center;
	font-size: 1rem;
	font-style: normal;
	font-family: "Poppins";
	font-weight: 500;
	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;
	}
}