/**
 * 登录页面样式
 * SMT生产管理系统
 */

@import url('auth.css');

/* 登录页面特定样式 */
.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 420px;
    animation: slideIn 0.5s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.logo svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.login-header h1 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-header p {
    color: #666;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

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

.default-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
}

.default-info p {
    color: #555;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.default-info strong {
    color: #667eea;
    font-weight: 600;
}

.form-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 25px;
}

.remember-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.remember-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #667eea;
    cursor: pointer;
}

.remember-tip {
    font-size: 12px;
    color: #999;
}

.register-link-inline {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.register-link-inline:hover {
    text-decoration: underline;
    color: #764ba2;
}

.register-link {
    display: none;
}
