/* 全屏遮罩背景 */
.modal-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}
/* 登录弹窗 */
.login-container {
    width: 827px;
    height: 717px;
    background: url("../../images/summer/login-bg.png") no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* 关闭按钮 */
.modal-close {
    position: absolute;
    top: 40px;
    right: 50px;
    padding: 5px 10px;
    z-index: 3;
    cursor: pointer;
}
.modal-close img{
    height: 25px;
}

/* 登录内容 */
.login-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 50px;
}

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

.login-title {
    font-weight: 500;
    font-size: 36px;
    color: #000000;
    line-height: 42px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 5px;
}

.login-subtitle {
    font-size: 14px;
    color: #999;
}

/* 登录选项卡 */
.login-tabs {
    display: flex;
    margin-bottom: 30px;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-weight: 400;
    font-size: 26px;
    color: #96999F;
    cursor: pointer;
    position: relative;
}

.tab-item.active {
    color: #000000;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 4px;
    background-color: #2E95FE;
    border-radius: 2px;
}

/* 登录表单 */
.login-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group {
    margin-bottom: 20px;
}
.intl-tel-input {
    float: left;
    width: 90px;
    color: #000000;
    border: none;
}
.intl-tel-input .country-list {
    list-style: none;
    position: fixed;
    z-index: 2;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: #374677;
    border: 1px solid #374677;
    width: 300px;
    max-height: 200px;
    color: #ffffff;
    overflow-y: scroll;
}
.mobile-number{
    height: 57px;
    width: 90px;
    border: none;
    font-size: 16px;
    outline: none;
}
.phone-input,.password-input {
    display: flex;
    width: 95%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #96999F;
    overflow: hidden;
}
.form-input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 18px;
}
.form-input::placeholder {
    color: #D0D0D2;
}
.captcha-group {
    display: flex;
    width: 95%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #96999F;
    overflow: hidden;
    gap: 10px;
}
.captcha-input {
    flex: 1;
}
.captcha-btn {
    width: 135px;
    height: 40px;
    background: #2E95FE;
    border: none;
    border-radius: 6px 6px 6px 6px;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin: 10px 20px 10px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.captcha-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(77, 124, 254, 0.5);
}
.password-group{
    display: none;
}
.fn-btn-message {
    color: #fff;
    background-color: #4285f4;
    border-color: #4285f4;
    float: right;
    /*margin-top: -45px;*/
}
.fn-btn-message:hover{
    color: #fff;
}
.switch-login {
    text-align: left;
    margin-bottom: 20px;
}

.switch-link {
    color: #2E95FE;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.login-btn {
    width: 335px;
    height: 60px;
    line-height: 60px;
    margin: 152px 0px 0px 180px;
    background: #2E95FE;
    border-radius: 28px;
    border: none;
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #1a7dd8;
}

