main {
    text-align: center;
}
.account-buttons {
    display: flex;
    flex-direction: column;
	margin: 4rem 0;
    gap: 2rem;
    align-items: center;
}
.main__input {
    font-size: clamp(1.25rem, 1.5vw, 2rem);
    padding: 1rem;
    border-radius: 10rem;
    border: none;
    width: 25rem; /*original 20 rem*/
    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;
}
/*GOOGLE SIGN IN BUTTON STYLES*/
.gsi-material-button {
  	-moz-user-select: none;
  	-webkit-user-select: none;
  	-ms-user-select: none;
  	-webkit-appearance: none;
  	background-color: #fff;
  	background-image: none;
  	border: 1px solid #747775;
  	-webkit-border-radius: 20px;
  	border-radius: 10rem;
  	-webkit-box-sizing: border-box;
  	box-sizing: border-box;
  	color: #1f1f1f;
  	cursor: pointer;
  	font-family: 'Roboto', arial, sans-serif;
  	font-size: 1.3rem;
  	letter-spacing: 0.25px;
  	outline: none;
  	overflow: hidden;
  	padding: .92rem 4.3rem;
  	position: relative;
  	text-align: center;
  	-webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  	transition: background-color .218s, border-color .218s, box-shadow .218s;
  	vertical-align: middle;
  	white-space: nowrap;
  	width: 20rem;
  	max-width: 95%;
  	min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  	height: 1.5rem;
  	margin-right: .75rem;
  	min-width: 1.5rem;
  	width: 1.5rem;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  	-webkit-align-items: center;
  	align-items: center;
  	display: flex;
  	-webkit-flex-direction: row;
  	flex-direction: row;
  	-webkit-flex-wrap: nowrap;
  	flex-wrap: nowrap;
  	height: 100%;
  	justify-content: space-between;
  	position: relative;
  	width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  	-webkit-flex-grow: 1;
  	flex-grow: 1;
  	font-family: 'Lato', arial, sans-serif;
  	font-weight: 500;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
	-webkit-transition: opacity .218s;
 	transition: opacity .218s;
  	bottom: 0;
  	left: 0;
  	opacity: 0;
  	position: absolute;
  	right: 0;
  	top: 0;
}

.gsi-material-button:disabled {
  	cursor: default;
  	background-color: #ffffff61;
  	border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  	opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
 	opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  	background-color: #303030;
  	opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  	-webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  	background-color: #303030;
  	opacity: 8%;
}
/*google button end*/
.submit-button {
	padding: .5rem 1rem;
    font-size: clamp(1rem, 2vw, 2rem);
	border-radius: 50rem;
	border: none;
	cursor: pointer;
	background-color: #ef2647;
	color: #FFF;
}
.submit-button:hover {
	background-color: #d41d38;
}
.password-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.clickable {
	display: inline-block;
	cursor: pointer;
	margin-top: 0.5rem;
}
.clickable:hover {
	text-decoration: underline;
	color: #fff;
}
.hardcoded-separation {
	height: 2rem;
}