*{
	font-family: Arial, Helvetica, sans-serif !important;
}
body{
	background-color:#f9f5ea;
}
:root {
    --primary-color: #4a90e2;
    --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #6772e5 100%);
    --text-color: #2c3e50;
    --border-color: #e1e8ed;
    --background-color: #f8fafc;
    --error-color: #ff4757;
    --success-color: #2ed573;
    --box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    --input-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.auth-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9f0f8 100%);
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    animation: fadeIn 0.6s ease-out;
}

.auth-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

.auth-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 16px;
}

.input-group {
    position: relative;
    margin-bottom: 24px;
}

.input-group input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    box-shadow: var(--input-shadow);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.input-group .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: all 0.3s ease;
}

.input-group input:focus + .icon {
    color: var(--primary-color);
}

.captcha-group {
    display: flex;
    gap: 12px;
}

.captcha-group input {
    flex: 1;
}

.captcha-image {
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.captcha-image:hover {
    transform: scale(1.05);
}

.auth-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--primary-gradient);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.auth-button:active {
    transform: translateY(0);
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.auth-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.auth-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

.error-message {
    background: rgba(255, 71, 87, 0.1);
    color: var(--error-color);
}

.success-message {
    background: rgba(46, 213, 115, 0.1);
    color: var(--success-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-text {
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 480px) {
    .auth-box {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .input-group input {
        font-size: 16px;
    }
} 
*{
	font-family: Arial, Helvetica, sans-serif !important;
}

.help-content {
    padding: 20px 0;
}

.notice-section {
    margin-bottom: 30px;
}

.notice-section h2 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.notice-section ol {
    padding-left: 20px;
    color: #64748b;
}

.notice-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-section {
    text-align: center;
    color: #64748b;
}

.contact-section p {
    margin: 10px 0;
}

.service-hours {
    margin: 15px 0;
    color: var(--text-color);
}

.qrcode-container {
    margin: 20px auto;
    width: 200px;
    height: 200px;
}

.qrcode-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-links {
    text-align: center;
    margin-top: 30px;
}

.auth-box {
    padding: 10px 40px !important;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-links .divider {
    margin: 0 10px;
    color: #64748b;
}

.auth-links a:hover {
    opacity: 0.8;
} 
