.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-header .logo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.login-header h1 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 8px;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.login-form {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.login-tabs {
    display: flex;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.login-tab.active {
    color: var(--primary);
    font-weight: 600;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30%;
    width: 40%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
}

.code-group {
    display: flex;
    gap: 10px;
}

.code-group input {
    flex: 1;
}

.btn-send-code {
    white-space: nowrap;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

.btn-send-code:disabled {
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

.identity-group {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    height: 48px;
    font-size: 16px;
    margin-top: 10px;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.forgot-pwd {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #999;
}

.forgot-pwd a {
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
}