body {
	background-color: #F5F7FA;
	padding-top: 40px;
	padding-bottom: 40px;
	font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
		sans-serif;
}

.beiwai-container {
	max-width: 1000px;
	margin: 0 auto;
}

.header {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #E1E5EB;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo img {
	height: 36px;
	margin-right: 10px;
}

.logo-text {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.logo-subtext {
	font-size: 14px;
	color: #666;
	margin-left: 5px;
}

.password-reset-card {
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.card-header {
	padding: 15px 20px;
	border-bottom: 1px solid #E1E5EB;
	background-color: #FAFAFA;
}

.card-title {
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: 500;
}

.card-body {
	padding: 30px 40px;
}

.step-navigation {
	margin-bottom: 30px;
	position: relative;
}

.step-navigation::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 40px;
	right: 40px;
	height: 2px;
	background-color: #E1E5EB;
	z-index: 1;
}

.steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.step {
	text-align: center;
	width: 33.333%;
}

.step-icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 50%;
	background-color: #FFFFFF;
	border: 2px solid #E1E5EB;
	color: #666;
	font-size: 14px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.step.active .step-icon {
	background-color: #4A90E2;
	border-color: #4A90E2;
	color: #FFFFFF;
}

.step.completed .step-icon {
	background-color: #4A90E2;
	border-color: #4A90E2;
	color: #FFFFFF;
}

.step-label {
	font-size: 14px;
	color: #666;
}

.step.active .step-label {
	color: #4A90E2;
	font-weight: 500;
}

.step-content {
	display: none;
}

.step-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@
keyframes fadeIn {from { opacity:0;
	transform: translateY(10px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.section-title {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #F0F2F5;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.form-control {
	height: 40px;
	padding: 8px 12px;
	border: 1px solid #E1E5EB;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s;
}

.form-control:focus {
	border-color: #4A90E2;
	box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
	outline: none;
}

.help-text {
	display: block;
	margin-top: 5px;
	font-size: 12px;
	color: #999;
}

.verification-row {
	display: flex;
	gap: 10px;
}

.verification-row .form-control {
	flex: 1;
}

.captcha-image {
	width: 120px;
	height: 40px;
	background-color: #F5F7FA;
	border: 1px solid #E1E5EB;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 12px;
	overflow: hidden;
}

.captcha-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn {
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s;
}

.btn-primary {
	background-color: #4A90E2;
	border-color: #4A90E2;
	color: #FFFFFF;
}

.btn-primary:hover, .btn-primary:focus {
	background-color: #3A80D2;
	border-color: #3A80D2;
	color: #FFFFFF;
}

.btn-default {
	background-color: #F5F7FA;
	border-color: #E1E5EB;
	color: #333;
}

.btn-default:hover, .btn-default:focus {
	background-color: #E9EDF2;
	border-color: #D1D9E6;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-method {
	padding: 20px 15px;
	text-align: center;
	border: 1px solid #E1E5EB;
	border-radius: 6px;
	background-color: #FFFFFF;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-method:hover {
	border-color: #4A90E2;
}

.btn-method.active {
	border-color: #4A90E2;
	background-color: rgba(74, 144, 226, 0.05);
}

.method-icon {
	font-size: 24px;
	color: #4A90E2;
	margin-bottom: 10px;
}

.method-title {
	font-size: 16px;
	color: #333;
	margin-bottom: 5px;
}

.method-desc {
	font-size: 12px;
	color: #999;
}

.action-buttons {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}

.footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #E1E5EB;
	text-align: center;
	font-size: 12px;
	color: #999;
}

.error-message {
	color: #E74C3C;
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

.form-group.error .form-control {
	border-color: #E74C3C;
}

.form-group.error .error-message {
	display: block;
}

.success-message {
	display: none;
	padding: 15px;
	background-color: #F0FFF4;
	border: 1px solid #C3E6CB;
	border-radius: 4px;
	color: #28A745;
	margin-bottom: 20px;
	text-align: center;
}

.success-icon {
	font-size: 24px;
	margin-bottom: 10px;
}

.redirect-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.redirect-content {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.redirect-icon {
    font-size: 48px;
    color: #28A745;
    margin-bottom: 20px;
}

.redirect-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.redirect-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.redirect-countdown {
    color: #4A90E2;
    font-weight: bold;
}

.redirect-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}