.p_userlogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    background-color: #f7f7f5;
}
.p_userlogin .container {
    width: 1200px;
    display: flex;
    align-content: center;
    margin: auto;
}

.p_userlogin .left-panel {
    width: 647px;
    height: 420px;
    border-radius: 12px 0px 0px 12px;
}

.p_userlogin .left-panel .image {
    width: 647px;
    height: 420px;
    border-radius: 12px 0px 0px 12px;
}

.p_userlogin .right-panel {
    width: 537px;
    height: 420px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 16px;
    padding: 0 65px;
}

.p_userlogin .header {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 29px;
}

.p_userlogin .tab {
    padding: 8px 44px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.p_userlogin .tab.active {
    color: #108cda;
}

.p_userlogin .form-group {
    width: 100%;
}

.p_userlogin .input-group {
    display: flex;
    align-items: center;
    background: #f7f7f5;
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 10px;
    position: relative;
}

.p_userlogin .input-group label {
    width: 80px;
    font-weight: 400;
    font-size: 14px;
    color: #3c3e42;
    /* margin-right: 12px; */
    white-space: nowrap;
}

.p_userlogin .input-group input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding: 8px 0;
}

.p_userlogin .captcha-display {
    font-size: 14px;
    font-weight: bold;
    color: #108cda;
    margin-left: 12px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.p_userlogin .note {
    font-size: 14px;
    color: #808180;
    font-weight: 400;
    text-align: center;
    margin: 12px 0;
}

.p_userlogin .btn {
    width: 194px;
    height: 47px;
    padding: 12px;
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    margin-top: 43px;
    transition: background-color 0.3s;
}

.p_userlogin .btn-primary {
    background: #108cda;
    color: white;
}

.p_userlogin .btn-secondary {
    background: #f7f7f5;
    color: #108cda;
}

.p_userlogin .forgot-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #108cda;
    cursor: pointer;
}

.p_userlogin .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.p_userlogin .social-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p_userlogin .social-link {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 5px;
    /* 调整图标与文字之间的间距 */
}

.p_userlogin .social-link-text {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s, text-decoration 0.3s;
}

/* 激活状态：蓝色 + 下划线 */
.p_userlogin .social-link-text.active {
    color: #108cda;
    text-decoration: underline;
}

.p_userlogin .facebook {
    /* background: #1877f2; */
    color: white;
}

.p_userlogin .linkedin {
    /* background: #0a66c2; */
    color: white;
}

.p_userlogin .instagram {
    /* background: #e1306c; */
    color: white;
}

.p_userlogin .twitter {
    /* background: #1da1f2; */
    color: white;
}

.p_userlogin .google {
    /* background: #ea4335; */
    color: white;
}
