.body-act{
	margin-top: 68px;
}

.announcement{
	height: 68px;
	position: fixed;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	z-index: 10;
	background: #2563eb;
	color: white;
	font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size: 17px;
	line-height: 1;
	font-weight: 500;
}
.announcement u {
	cursor: pointer;
}
.listModalContainer *{
	font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.listModalContainer.collapse{
	visibility: collapse;
}

.listModalContainer{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 12;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.listModalContainer .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
}

.listModalContainer .modal{
	display: flex;
	align-items: stretch;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 4px 22px rgba(122, 122, 122, 0.1);
	position: relative;
	z-index: 1;
}

.firstPart{
	padding: 34px;
	flex-grow: 1;
	max-width: 580px;
	display: flex;
	flex-direction: column;
  justify-content: center;
}

.modalTitle{
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 700;
}

.modalText{
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

.formContainer{
	display: flex;
}

.emailInput {
	font-weight: 400;
  line-height: 16px;
  outline: none;
  border: 2px solid #d4d4d4;
  letter-spacing: 0.01em;
  color: #191E24;
  display: block;
  padding: 0 10px;
  height: 46px;
  border-radius: 4px;
  flex-grow: 1;
	width: 100%;
}

.emailInput:focus{
	border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
}

.formButton{
  display: block;
	height: 46px;
	margin-left: 8px;
	border-radius: 4px;
	background: #2563eb;
	color: white;
	font-size: 17px;
	font-weight: 600;
	padding: 0 18px;
	white-space: nowrap;
}

@media (max-width: 1024px){
	.formContainer{
		flex-direction: column;
	}

	.formButton{
		margin-top: 10px;
		margin-left: 0;
	}

	.modal img {
		display: none;
	}

	.modalTitle{
		font-size: 32px;
		line-height: 38px;
	}

	.announcement{
		font-size: 15px;
		text-align: center;
		flex-direction: column;
	}
	.announcement u{
		margin-bottom: 6px;
	}
}