:root {
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 42.5rem;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.main-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 22.5rem;
	width: 100%;
	height: 100%;
	padding: 1rem;
	margin: 0 auto;
}

.greeting-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}

.form-logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 0.25rem;
	width: 4rem;
	height: 4rem;
	margin-bottom: 2rem;
}

.form-logo img {
	width: 100%;
	height: auto;
}

.greeting-title-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	column-gap: 1rem;
	width: 100%;
	height: auto;
	margin-bottom: 1.25rem;
}

.form-title {
	color: #121214;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.form-year {
	color: rgba(12, 12, 14, 0.6);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.form-container {
	/* flex: 1; */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1.25rem;
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}

.form-input-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 0.75rem;
	max-width: 100%;
	/* min-width: 320px; */
	width: 100%;
	height: auto;
}

.form-input-box label {
	color: #121214;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.form-input-box input,
.form-input-box select {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 2.875rem;
	padding: 0 1rem;
	background-color: white;
	color: #121214;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
	border: 1px solid #d1d1d1;
	border-radius: 5px;
}

.form-button-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	row-gap: 0.75rem;
	width: 100%;
	height: auto;
}

.form-button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3rem;
	padding: 1rem;
	background-color: transparent;
	color: #121214;
	font-size: 16px;
	font-weight: 700;
	line-height: 1px;
	letter-spacing: 0;
	border: 1px solid var(--primary-color);
	border-radius: 0.625rem;
}

.form-button.primary {
	background-color: var(--primary-color);
}

@media screen and (min-width: 768px) {
	/* .main-wrapper {
		max-width: unset;
	} */
}

@media screen and (min-width: 1440px) {
}
