a:-webkit-any-link{
    text-decoration: none;
}

.login-form-ibox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
}
.login-container {
    width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    min-height: 440px;
}

.wechatLoginContainer,
.wechatLoginContainer.hidden{
    display: none;
}

.defaultLoginContainer.active,
.wechatLoginContainer.active{
    display: block;
}

h3 {
    font-size: 32px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: .5em;
}

.switch {
    font-size: 14px;
    line-height: 21px;
    color: #909399;
    display: flex;
}

.switch a,
.switch span {
    color: #FF7D00;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.switch svg {
    margin-left: 4px;
    width: 21px;
    height: 21px;
    fill: #FF7D00;
}

.tabs {
    display: flex;
    margin: 32px 0 20px;
    cursor: pointer;
}

.tab {
    padding: 2px 0;
    margin-right: 24px;
    font-size: 16px;
    position: relative;
    color: rgba(0, 0, 0, 0.45);
}

.tab.active {
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid rgb(51, 51, 51);
}

.custom_tta-panel{
    display: none;
}
.custom_tta-panel.active{
    display: block;
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    width: 100%;
    height: 40px;
    padding: 6px 30px 6px 30px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;
}

.input-group input::placeholder{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.input-group input:focus {
    border-color: #FF7D00;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    outline: none;
}

.input-group input.error {
    border-color: #ff4d4f;
}

.form-group.has-error .input-group input {
    border-color: #ff4d4f;
}

.input-group input.error:focus {
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
}

.input-prefix {
    position: absolute;
    left: 12px;
    color: rgba(0, 0, 0, 0.25);
    height: 22px;
}
.anticon.ant-input-password-icon{
    position: absolute;
    right: 6px;
    top: 10px;
    color: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}
.anticon.ant-input-password-icon:hover {
    color: rgba(0, 0, 0, 0.88);
}

.input-suffix {
    position: absolute;
    right: 6px;
    top: 5px;
    display: flex;
    align-items: center;
}

.captcha-img {
    height: 30px;
    cursor: pointer;
}

.captcha-img img{
    height: 30px;
}

.get-code-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    height: 30px;
    border: none;
    color: #FF7D00;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    background-color: #ffffff;
    outline: none;
}
.get-code-btn:hover{
    background-color: #ffffff;
    color: #FF7D00;
}

.get-code-btn:disabled {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}
.error-message {
    color: #ff4d4f;
    font-size: 14px;
    margin-top: 4px;
    transition: all 0.3s;
}

.error-message.show {
    height: auto;
    margin-top: 6px;
}

.tips {
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    font-size: 12px;
    margin-top: 6px;
    text-align: right;
}

.tips span {
    color: #FF7D00;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    height: 40px;
    background-color: #FF7D00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.login-btn.disabled-btn{
    cursor: no-drop;
    background-color: rgba(0, 0, 0, 0.25);
}

.login-btn:hover {
    background-color: #ed8828;
}

.login-btn.disabled-btn:hover{
    cursor: no-drop;
    background-color: rgba(0, 0, 0, 0.25);
}

.agreement-check {
    display: flex;
    align-items: center;
    margin-top: 24px;
    font-size: 12px;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.agreement-check input {
    margin-right: 6px;
}

.agreement-check a {
    color: #FF7D00;
    text-decoration: none;
}

.other-login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
}

.other-login svg {
    margin-right: 8px;
    width: 25px;
    height: 25px;
}

.form-item-enter-active, .form-item-leave-active {
    transition: all 0.3s;
}

.form-item-enter-from, .form-item-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.modify-password-tips{
    font-size: 13px;
    text-align: right;
    cursor:pointer;
    text-decoration: none;
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}




@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wx-login-iframe {
    border: none;
    width: 100%;
    height: 300px;
    background: transparent;
}


@media only screen and (max-width: 991px){
    h3{
        font-size: 28px;
    }
    .login-form-ibox{
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px){
    h3{
        font-size: 26px;
    }
    .login-container{
        width: 340px;
        padding: 26px;
    }
}
