.auth {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 360px;
    margin: 0 auto;
    margin-top: 100px;
    font-family: Manrope;
    color: #222126;
}
.auth h1 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
}
.auth input {
    width: 100%;
    height: 48px;
    border: 1px solid #BCBCC9;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.86px;
    text-align: left;
    box-sizing: border-box;
}
.auth input[type=submit] {
    margin-top: 10px;
	background-color: #19BE8D;
	border: 1px solid #19BE8D;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0em;
	text-align: center;
	cursor: pointer;
}
.auth input[type=submit]:hover {
	background-color: #14A97C;
	border-color: #14A97C;
	color: #fff;
}
.auth input[type=submit]:active {
	background-color: #0F986F;
	border-color: #0F986F;
	color: #fff;
}
.auth div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.auth a {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
	text-decoration: none;
	cursor: pointer;
	color: #7A7A8B;
}
.auth a:hover {
	color: #19BE8D;
    text-decoration: none;
    font-weight: 700;
}
@media (max-width: 768px) {
    .auth {
        width: calc(100% - 20px);
        margin: 10px;
        margin-top: 50px;
    }
    .auth h1 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        text-align: left;
    }
    .auth a {
        margin-top: 20px;
    }
}