/* Page styles: przypomnienie-hasla */
.opt-auth-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
	padding: 20px;
	font-family: "Segoe UI", sans-serif;
}

.opt-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 450px;
}

.opt-form-body {
	padding: 40px 30px;
	text-align: center;
}

.opt-h1 {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 10px;
	color: #2b2e34;
}

.opt-p-sub {
	color: #888;
	font-size: 14px;
	margin-bottom: 25px;
	line-height: 1.5;
}

.opt-group {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}

.opt-input {
	width: 100%;
	padding: 16px 14px;
	border: 1px solid #cfd7e6;
	border-radius: 8px;
	font-size: 16px;
	background: #f4f7fb;
	outline: none;
	transition: 0.3s;
	box-sizing: border-box;
}

.opt-input.opt-input-eye {
	padding-right: 45px;
}

.opt-floating {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	transition: 0.2s;
	pointer-events: none;
	background: transparent;
	padding: 0 5px;
}

.opt-input:focus ~ .opt-floating,
.opt-input:not(:placeholder-shown) ~ .opt-floating {
	top: 0;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 700;
	color: #d27a1f;
	background: #fff;
}

.opt-input:focus {
	border-color: #d27a1f;
	background: #fff;
}

.opt-eye-box {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #9aa3b2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-top: 2px;
	background: transparent;
	border: 0;
}

.opt-btn-main {
	width: 100%;
	border: none;
	color: #fff;
	padding: 16px;
	font-size: 15px;
	font-weight: 800;
	border-radius: 10px;
	cursor: pointer;
	background: linear-gradient(135deg, #e89b4a 0%, #d27a1f 60%, #9e5812 100%);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.opt-err {
	color: #e74c3c;
	font-size: 12px;
	margin-top: 5px;
	display: none;
	font-weight: 600;
}

.opt-err-block {
	display: block;
	margin: 0 0 20px;
}

.opt-success-view {
	animation: optFadeIn 0.5s ease forwards;
}

.opt-icon-circle {
	font-size: 40px;
	color: #2ecc71;
	margin-bottom: 15px;
}

.opt-status-msg {
	color: #2ecc71;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
}

.opt-back-link {
	display: inline-block;
	margin-top: 25px;
	color: #2b2e34;
	font-size: 13px;
	text-decoration: underline;
	font-weight: 600;
}

@keyframes optFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.opt-auth-wrapper {
		padding: 0;
		align-items: flex-start;
		padding-top: 30px;
	}

	.opt-card {
		background: transparent;
		box-shadow: none;
		border-radius: 0;
		max-width: 100%;
	}

	.opt-form-body {
		padding: 20px;
	}

	.opt-input {
		background: #fff;
	}
}
