body {
	margin: 0;
	font-family: 'inter', sans-serif;
	background-color: var(--background-grey);
	display: flex;
	align-items: center;
	justify-content: center;
}

* {
	box-sizing: border-box;
	text-decoration: none;
}

.start-animation-overlay {
	display: block;
	background-color: var(--dark-blue);
	transition: all 1.5s ease-in-out;
}

.transform-animation-overlay {
	transition: all 1.5s ease-in-out;
	background-color: transparent;
}

.join-logo-mobile-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 120px;
	width: 100px;
	transform: translate(-50%, -50%);
	transition: all 1.5s ease-in-out;
	color: white;
}

.transfer-join-logo {
	transition: all 1.5s ease-in-out;
	top: 16px;
	left: 16px;
	height: 78px;
	width: 64px;
	transform: unset;
	color: var(--dark-blue);
}

/* Login Window */

.dropdown-menu {
	display: block;
	box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
	border-radius: 30px;
	border: unset;
	/* z-index: 10000; */
}

.login-title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 47px !important;
	font-weight: bold;
}

.login-title-container::after {
	content: '';
	display: block;
	width: 90px;
	height: 3px;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	margin-bottom: 34px;
	background-color: var(--light-blue);
}

.login-email-container {
	margin-top: 34px;
}

.btns-index {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
}

.login-btns-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.color-black {
	color: black;
}
