body {
	background-color: #f6f7f8;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 1.5s ease-in-out;
}

.wrapper {
	width: 100%;
	max-width: 1920px;
	height: 100vh;
	opacity: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	transition: opacity 1.5s ease-in-out;
	margin: 0 auto;
	position: relative;
}

.top-row {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding-top: 30px;
	box-sizing: border-box;
}

.top-right {
	gap: 35px;
	margin: 30px 20px 0 0;
}
.logo-animated.initial-hidden {
  opacity: 0;
}

.logo-animated {
	position: absolute;
	top: 35%;
	left: 44%;
	width: 274px;
	transition: all 1.5s ease-in-out;
	z-index: 2000;
}

.white-overlay {
	position: absolute;
	inset: 0;
	background-color: #f6f7f8;
	opacity: 1;
	transition: opacity 1.5s ease-in-out;
	z-index: 1;
}

.logo-animated.shrink {
	top: 45px;
	left: 77px;
	width: 100px;
}

.not-a-user {
	font-family: "Inter", sans-serif;
	font-weight: 800;
	font-size: 20px;
}

.container {
	width: 100%;
	flex-direction: column;
	flex-grow: 1;
}

.signup-btn {
	font-family: "Inter", sans-serif;
	font-weight: 800;
	background-color: #2a3647;
	font-size: 16px;
	border-radius: 8px;
	padding: 15px 16px;
	color: white;
	cursor: pointer;
	border: none;
	transition: background-color 100ms ease-in-out;
	text-decoration: none;
}

.login-box {
	flex-direction: column;
	background-color: white;
	width: 100%;
	max-width: 652px;
	min-height: 449px;
	height: auto;
	margin: 180px auto 0 auto;
	padding: 40px;
	border-radius: 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
	margin: 0;
	font-size: 61px;
	font-family: var(--Inter800);
}

.input-box {
	width: 100%;
	max-width: 450px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

input:focus {
	outline: none;
}

.input-group {
	position: relative;
	margin: 20px 0 0;
}

.input-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 10px;
	background: white;
	padding: 0 10px;
}

.input-wrapper input {
	flex: 1;
	width: 100%;
	font-size: 20px;
	padding: 12px 10px;
	border: none;
}

.input-wrapper input::placeholder {
	color: #9999997c;
	opacity: 1;
	font-size: 20px;
}

.input-wrapper .icon {
	width: 20px;
	height: 20px;
	margin-left: 10px;
}

.password-icon:hover {
	cursor: pointer;
}

.form-box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.buttons {
	width: 100%;
	max-width: 369px;
	gap: 35px;
	margin-top: 45px;
}

.underline {
	width: 150px;
}

.login-btn,
.guest-btn {
	font-family: "Inter", sans-serif;
	font-weight: 800;
	font-size: 20px;
	padding: 15px 24px;
	font-weight: bold;
	border-radius: 8px;
	border: none;
	cursor: pointer;
}

.login-btn {
	width: 110px;
	height: 48px;
	background-color: #2e2f39;
	color: white;
	transition: all 100ms ease;
}

.guest-btn {
	width: 177px;
	height: 48px;
	border: 2px solid #2e2f39;
	background: white;
	color: #2e2f39;
	transition: all 100ms ease;
}

.footer {
	display: flex;
	width: 100%;
	max-width: 246px;
	text-align: center;
	font-size: 16px;
	color: #888;
	gap: 20px;
	margin: 40px 40px 0;
	padding-bottom: 40px;
}

.footer a {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	margin-top: 80px;
	color: #888;
	text-decoration: none;
	transition: all 100ms ease;
}

.error-message {
	font-size: 16px;
	color: #e60026;
	margin-top: 4px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.error-message.show {
	visibility: visible;
	opacity: 1;
}

.hidden {
	display: none;
}

.login-btn:hover,
.signup-btn:hover,
.guest-btn:hover {
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	background-color: #00bee8;
}

.footer a:hover {
	color: #00bee8;
	font-weight: 600;
	transform: scale(1.03);
}
