.container {
    max-width: 1920px !important;
}
.navbar {
    padding: 40px 0;
    background-color: #fff;
    width: 100%;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-container img {
    height: 100px;
}
.logo-text {
    font-size: 24px;
    margin-left: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 200;
}
.search-box {
    position: relative;
    width: 20%;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 30px;
}
.search-language-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.card{
    margin: 20px auto;
}
@media (max-width: 992px) {
    .search-box {
        width: 80%;
        margin: 30px auto;
    }
}
.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    padding: 0px 40px 10px 0px;
    outline: none;
    font-size: 22px;
    font-weight: 200;
    line-height: 1;
    display: block;
}
.search-input::placeholder {
    color: #000;
    opacity: 1;
}
.search-input:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
.search-input::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}
.search-icon {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transform: none;
}
.language-login {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    font-size: 20px;
    text-align: right;
    line-height: 1;
    color: #000;
}

.language {
    font-weight: 200;
    font-size: 20px;
    vertical-align: middle;
    color: #000;
}
@media (max-width: 768px) {
    .navbar {
        padding: 15px 10px;
    }
    .navbar > .container {
        padding: 0;
    }
   
    .row {
        margin: 0;
        flex-wrap: nowrap;
    }
    .col-12 {
        width: auto;
        padding: 0;
        flex: none;
    }
    .logo-container {
        display: flex;
        align-items: center;
    }
    .logo-container img {
        height: 45px;
    }
    .logo-text {
        font-size: 12px;
        margin-left: 8px;
    }
    .search-box {
        width: 85px;
        margin: 0;
        margin-right: 10px;
        display: flex;
        align-items: center;
        margin-left: 70px;
    }
    .search-input {
        font-size: 12px;
        padding-right: 20px;
        padding-bottom: 5px;
        margin-top: 0;
    }
    .search-icon {
        width: 16px;
        height: 16px;
        right: 0;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    .language-login {
        margin: 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }
    .language-selector {
        display: none;
    }
}
/* 登录页面样式 */
.login-page {
    min-height: 74vh;
    position: relative;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}






.login-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}


.login-form-container {
    position: relative;
    z-index: 3;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    margin: auto;
}



.input-group-text {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
}

.input-group-text i {
    color: #d95517;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    padding-left: 0;
}



.third-party-login {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.third-party-icon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 400px; /* 控制总宽度 */
}

.third-party-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 5px; /* 增加图标间距 */
}

.third-party-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(217,85,23,0.2);
    background-color: #fff5f0;
}

.third-party-icon i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .third-party-icon-container {
        gap: 15px;
        max-width: 300px; /* 小屏幕时减小宽度 */
    }
    
    .third-party-icon {
        width: 45px;
        height: 45px;
    }
    
    .third-party-icon i {
        font-size: 20px;
    }
}

/* 页脚样式 */
.footer {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-ads {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-ads img {
    max-width: 150px;
    height: auto;
}

.footer-text-section {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.footer-text-section p {
    margin: 5px 0;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .login-page {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        display: none !important;
    }

    .login-bg {
        display: block !important;
        opacity: 1 !important;
    }
    .login-form-container {
        width: calc(100% - 40px);
        padding: 20px;
        margin: 20px;
       
    }

    .login-form-container .footer-text-section {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
}

.btn-primary {
    background-color: #d95517;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #c14813;
    transform: translateY(-1px);
}
