/* ============================================================
   Two-Step Lost Password Form
   Matches the Apple-style design system
   ============================================================ */

/* === Wrapper === */
.ur-lp-wrapper {
	width: 100%;
	margin: 60px auto;
	font-family: Roboto, Arial, sans-serif;
}

.user-registration{
	max-width: 100% !important;
}

/* === Step transitions === */
.ur-lp-step {
	animation: ur-lp-fadein 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#ur-lp-step1{
	width: 445px;
}

.ur-lp-step--hidden {
	display: none !important;
}

@keyframes ur-lp-fadein {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* === Icon === */
.ur-lp-icon,
.ur-lp-check-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

/* === Title === */
.ur-lp-title {
	font-size: 24px !important;
	font-weight: 500 !important;
	color: #000000 !important;
	text-align: center;
	margin: 0 0 28px !important;
	letter-spacing: -0.02em;
	line-height: 1.25 !important;
}

#ur-lp-step2 .ur-lp-title{
	margin-bottom: 8px;
		font-size: 32px !important;

}

#ur-lp-step2{
	background-color: #F6F6F6;
	padding: 48px;
	width: 580px;
}

 
#ur-lp-step2 .ur-lp-check-desc{
	font-size:16px;
}

/* === Notice area === */
.ur-lp-notice-container {
	margin-bottom: 12px;
	min-height: 0;
}

.ur-lp-notice {
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13.5px;
	margin-bottom: 8px;
}

.ur-lp-notice--error {
	background: #fff0f0;
	color: #c0392b;
	border: 1px solid #f5c6c2;
}

/* === Form === */
.ur-lp-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* === Field === */
.ur-lp-field-wrap {
	border: 1px solid #6d6d6d;
	border-radius: 12px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ur-lp-field-wrap:focus-within {
	border-color: #0071e3;
	box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.ur-lp-input {
	width: 100% !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 16px !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	color: #000 !important;
	background: transparent !important;
	outline: none !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	font-family: inherit !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.ur-lp-input::placeholder {
	color: #86868b !important;
}

/* === Submit Button === */
.ur-lp-btn {
	width: 100%;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 400;
	border: none;
	border-radius: 12px;
	background: #000;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	min-height: 50px;
}

.ur-lp-btn:hover {
	background: #333336;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ur-lp-btn:active {
	transform: scale(0.985);
}

.ur-lp-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Spinner */
.ur-lp-btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ur-lp-spin 0.7s linear infinite;
}

.ur-lp-btn.loading .ur-lp-btn-spinner {
	display: block;
}

.ur-lp-btn.loading .ur-lp-btn-text {
	opacity: 0.7;
}

@keyframes ur-lp-spin {
	to { transform: rotate(360deg); }
}

/* === Back link === */
.ur-lp-back {
	display: block;
	text-align: center;
	margin-top: 20px;
	font-size: 13.5px;
	color: #6d6d72;
	text-decoration: none;
	transition: color 0.15s ease;
}

.ur-lp-back:hover {
	color: #000000;
}

/* ─── Step 2 ─── */

/* === Description === */
.ur-lp-check-desc {
	font-size: 14px;
	color: #6d6d72;
	text-align: center;
	line-height: 1.55;
	margin: 0 0 24px;
}

.ur-lp-email-display {
	color: #000000;
	font-weight: 600;
	word-break: break-all;
}

/* === Card === */
.ur-lp-card {
	border-radius: 14px;
	padding: 0px 8px 8px 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* === Resend button === */
.ur-lp-resend-btn {
	width: 100%;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 400;
	border: none;
	border-radius: 10px;
	background: #000000;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s ease, opacity 0.2s ease;
	min-height: 50px;
}

.ur-lp-resend-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.ur-lp-resend-btn:not(:disabled):hover {
	background: #333336;
}

/* === Change email link === */
.ur-lp-change-email {
	width: 100%;
	padding: 14px 20px;
	margin-left: 0px !important;
	font-size: 16px;
	font-weight: 400;
	border: none;
	border-radius: 10px;
	background: transparent;
	color: #000000;
	cursor: pointer;
	font-family: inherit;
	text-align: center;
	transition: background 0.15s ease;
}

.ur-lp-change-email:hover {
	background: rgba(0,0,0,0.05);
}

/* === Responsive === */
@media (max-width: 480px) {
	.ur-lp-wrapper {
		max-width: 100%;
		margin: 30px 20px;
	}




	.ur-lp-title {
		font-size: 22px !important;
	}
}


@media (max-width: 600px){
	.ur-lp-wrapper {
	width: 100%;
	padding: 16px;
			margin: 0;

}

	#ur-lp-step1{
	width: 100%;
}

	#ur-lp-step2{
	width: 100%;
	padding: 16px;
}

.user-registration{
	width: 100% !important;
		margin: 0;

}
}

@media screen and (max-width: 782px) {
    .ur-form-container .button, .ur-form-container button, .user-registration .button, .user-registration button {
        font-size: 16px !important;

    }
}

/* ============================================================
   Reset Password Form — Apple-style
   ============================================================ */

.ur-rp-wrapper {
	width: 445px;
	margin: 60px auto;
	font-family: Roboto, Arial, sans-serif;
}

/* === Title === */
.ur-rp-title {
	font-size: 28px !important;
	font-weight: 500 !important;
	color: #000 !important;
	text-align: center;
	margin: 0 0 32px !important;
	letter-spacing: -0.02em;
	line-height: 1.2 !important;
}

/* === Form === */
.ur-rp-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* === Stacked field group === */
.ur-rp-field-group {
	border: 1px solid #6D6D6D;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ur-rp-field-group:focus-within {
	border-color: #000;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Divider between the two fields */
.ur-rp-divider {
	height: 1px;
	background: #6D6D6D;
	margin: 0;
}

/* === Individual field row === */
.ur-rp-field-row {
	position: relative;
}

.ur-rp-input-wrap {
	position: relative;
}

/* === Float label === */
.ur-rp-float-label {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	font-size: 15px !important;
	font-weight: 400 !important;
	color: #86868b !important;
	pointer-events: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
	margin: 0 !important;
	line-height: 1 !important;
}

.ur-rp-float-label.active {
	top: 10px;
	transform: translateY(0);
	font-size: 11px !important;
	letter-spacing: 0.02em;
}

/* === Input === */
.ur-rp-input-group {
	display: block;
	position: relative;
}

.ur-rp-input {
	width: 100% !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 28px 44px 10px 16px !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #000 !important;
	background: transparent !important;
	outline: none !important;
	box-shadow: none !important;
	height: 58px !important;
	box-sizing: border-box !important;
	font-family: inherit !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.ur-rp-input::placeholder {
	color: transparent !important;
}

/* === Show/hide password toggle === */
.ur-rp-pw-toggle,
.reg-pw-toggle {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none !important;
	border: none !important;
	padding: 0 !important;
	cursor: pointer !important;
	color: #86868b !important;
	text-decoration: none !important;
	font-size: 18px !important;
	display: flex !important;
	align-items: center !important;
	z-index: 3;
	transition: color 0.2s ease;
}

.ur-rp-pw-toggle:hover,
.reg-pw-toggle:hover {
	color: #000 !important;
}

.reg-pw-toggle svg {
	display: block;
}

/* === Confirm / Submit button === */
.ur-rp-submit,
.ur-rp-submit.user-registration-Button.button {
	display: block !important;
	width: 100% !important;
	padding: 16px 20px !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	border: none !important;
	border-radius: 12px !important;
	background: #000 !important;
	color: #fff !important;
	cursor: pointer !important;
	font-family: inherit !important;
	text-align: center !important;
	transition: background 0.2s ease, transform 0.15s ease !important;
	letter-spacing: 0.01em !important;
	min-height: 52px !important;
	line-height: 1.2 !important;
}

.ur-rp-submit:hover,
.ur-rp-submit.user-registration-Button.button:hover {
	background: #222 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.ur-rp-submit:active {
	transform: scale(0.985) !important;
}

/* === Notices inside reset form === */
.ur-rp-wrapper .user-registration-error,
.ur-rp-wrapper .user-registration-message {
	border-radius: 10px !important;
	font-size: 14px !important;
	padding: 12px 16px !important;
	margin-bottom: 16px !important;
}

/* === Responsive === */
@media (max-width: 600px) {
	.ur-rp-wrapper {
		width: 100%;
		padding: 16px;
		margin: 20px 0;
		box-sizing: border-box;
	}

	.ur-rp-title {
		font-size: 22px !important;
	}
}

/* === Hide default browser password reveal eye === */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
	display: none !important;
}