main {
    text-align: center;
}
.account-buttons {
    display: flex;
    flex-direction: column;
	margin: 4rem 0;
    gap: 1.7rem;
    align-items: center;
}
.main__input {
    font-size: clamp(1.25rem, 1.5vw, 2rem);
    padding: 1rem;
    border-radius: 10rem;
    border: none;
    width: 25rem;
    max-width: 90%;
}
.divider {
    width: 80%;
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
  	content: "";
  	flex: 1;
  	height: 1px;
  	background-color: #ccc;
}

.divider span {
  	padding: 0 12px;
	font-size: clamp(1rem, 3vw, 1.5rem);
  	color: #999;
  	white-space: nowrap;
}
.submit-button {
	padding: .5rem 1rem;
    font-size: clamp(1rem, 2vw, 2rem);
	border-radius: 50rem;
	border: none;
	cursor: pointer;
	background-color: #ef2647;
	color: #FFF;
    margin-bottom: .5rem;
}
.submit-button:hover {
	background-color: #d41d38;
}
.clickable {
	display: inline-block;
	cursor: pointer;
	margin-top: 0.5rem;
}
.clickable:hover {
	text-decoration: underline;
	color: #fff;
}
.hardcoded-separation {
	height: 2rem;
}