html, body {
	margin: 0;
	padding: 0;
	background-attachment: fixed;
	background-position: 50% 50%;
	background-size: cover;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

.backgroundImage-box{
	width: 100%;
	overflow: auto;
	position: absolute;
	z-index: -999;
	top: 100px;
	bottom: 77px;
}

.backgroundImage-box img{
	width: 100%;
	height: 100%;
}
.body {
	min-width: 400px;
	margin: 0 auto;
	padding: 10px;
}
.body-s {
	float: right;
	margin-right: 15%;
    min-height:500px;
	position: absolute;
	top: 150px;
	right: 10px;
}
.modal {
	padding: 25px 30px;
	background: rgba(255,255,255,0.9);
	font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
	color: #666;
}
.modal a {
	color: #2da5da;
}

@media screen and (max-width: 600px) {
	.body {
		padding: 20px;
	}
}

/* 现代化的找回密码表单样式 */
.find-pwd-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    padding: 20px 60px 20px 20px;
    position: relative;
    z-index: 1;
}

.find-pwd-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 35px;
    width: 100%;
    max-width: 420px;
    animation: slideInRight 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.find-pwd-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.find-pwd-header {
    text-align: center;
    margin-bottom: 16px;
}

.find-pwd-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.find-pwd-subtitle {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.step {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 14px;
}

.step.active {
    color: #1a237e;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #f0f0f0;
    margin: 0 15px;
}

.step.active .step-divider {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #1a237e;
    font-size: 16px;
    z-index: 20;
    pointer-events: none;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input {
    width: 100% !important;
    padding: 12px 12px 12px 50px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    color: #333 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

.form-input:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: #222;
}

.form-input:focus + .input-icon,
.input-wrapper:hover .input-icon {
    color: #3949ab;
    background: rgba(26, 35, 126, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.input-wrapper:hover .form-input {
    border-color: #8e9aff;
}

.form-input::placeholder {
    color: #999;
    opacity: 1;
}

.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-img {
    width: 80px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.captcha-img:hover {
    border-color: #1a237e;
    transform: scale(1.05);
}

.send-email-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.send-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #3949ab 0%, #303f9f 100%);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 3px;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.form-footer {
    margin-top: 16px;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #3949ab 0%, #303f9f 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.page-content {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

.page-content.hide {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.page-content.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* 隐藏原有的样式 */
.sky-form {
    background: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.sky-form fieldset {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.sky-form footer {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* 强制覆盖所有可能的输入框样式 */
.sky-form input[type="text"],
.sky-form input[type="password"] {
    pointer-events: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
}

#tab ul {
    display: none;
}

.body-s {
    position: relative !important;
    float: none !important;
    margin: 0 !important;
    top: auto !important;
    right: auto !important;
    min-height: auto !important;
}

/* 内联样式覆盖 */
.form-input.inline-override {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.error-message.inline-override {
    text-align: center;
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .find-pwd-container {
        justify-content: center;
        padding: 20px;
    }
    
    .find-pwd-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .find-pwd-title {
        font-size: 24px;
    }
    
    .captcha-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .send-email-btn {
        width: 100%;
    }
    
    .step-divider {
        width: 20px;
    }
}