.auth-forms-container {
	max-width: 450px;
	margin: 0 auto;
	padding: 20px;
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.form-title {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
}
form input {
	border: 1px solid #b3b3b3;
	border-radius: var(--radius);
	padding: 10px 12px;
	font-family: var(--family);
	font-size: 15px;
	color: var(--text);
	transition: border 0.2s ease;
	background: #fff;
	width:100%;
}
form label {
    display: none;
}
form .form-group {
    display: flex;
    flex-direction: column;
}
form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    background-color: #F67025;
    color: #ffffff !important;
    font-family: var(--family-m);
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 16px;
    line-height: 1;
    height: 48px;
    border: 0;
}
.checkbox-label {
	display: flex !important;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	min-height: auto;
	cursor: pointer;
}

.checkbox-label span {
	font-size: 14px;
	color: var(--text);
}

.form-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-links a {
	font-size: 14px;
	color: #d05110;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.form-links a:hover {
	opacity: 0.8;
	text-decoration: underline;
}
.form-messages {
	margin-bottom: 20px;
	padding: 15px;
	border-radius: var(--radius);
}

.error-messages {
	background-color: #fee;
	border: 1px solid #fcc;
}

.success-messages {
	background-color: #efe;
	border: 1px solid #cfc;
}

.error-message {
	color: #c33;
	margin: 5px 0;
	font-size: 14px;
}

.success-message {
	color: #393;
	margin: 5px 0;
	font-size: 14px;
}

.form-messages p:last-child {
	margin-bottom: 0;
}