.page-wrapper {
	display: flex;
}

.registration-form {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 30%;
	box-sizing: border-box;
	margin: auto;
	margin-top: 5px;
}

.registration-form h2 {
	text-align: center;
	color: #333;
	margin-bottom: 20px;
}

.required-asterisk {
	color: red;
}

label {
	margin: 10px 0 5px;
	color: #666;
	font-size: 15px;
}

.register-link-container {
    margin: auto;
    text-align: center;
}

.register-link {
    text-decoration: underline;
	margin: auto;
}

.register-link:hover {
    color: #0066cc;
}

.auth {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login__logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.login__form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
	width: 350px;
}

.forgot-password-link {
	margin: auto;
}

.button {
	margin-top: 15px;
}

img {
	width: 350px;
}

.login__label {
	font-size: 12px;
}

@media(max-width: 550px) {
	img {
		width: 270px;
	}

	.login__form {
		width: 270px;
	}
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
}

.popup-content h2 {
    margin-top: 0;
    color: #0066cc;
}

.popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #0066cc;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #0066cc;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
