.shade{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.login-container,.login-register {
    width: 401px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s ease-out;
    position: relative;
}
#register{
    display: none;
}
.close-btn{
    position: absolute;
    top: -20px;
    right: -30px;
    width: 31px;
    z-index: 99;
    cursor: pointer;
}
.login-tabs {
    display: flex;
    padding: 0 60px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 25px 0 0 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #888;
    position: relative;
    font-weight: 600;
}

.tab.active {
    color: #e83323;
}


.login-form {
    padding: 0 50px ;
    margin-top: 25px;
}

.form-group {
    background-color: #f3f5f7;
    border-radius: 8px;
}

.phone-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f5f7;
    font-size: 14px;
}
#hide-password{
    display: none;
}
#code{
    display: none;
}
.icon-box{
    display: flex;
    align-items: center;
    padding-right: 15px;
}
.password-icon{
    width: 25px;
    cursor: pointer;
 
}
.country-code {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    font-weight: 500;
    color: #818181;
    cursor: pointer;
}

.country-code i {
    margin-left: 8px;
    font-size: 12px;
    color: #666;
}

.phone-input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 16px;
}

.phone-input::placeholder {
    color: #aaa;
}

.verification-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: space-between;
}

.verification-input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    width: 200px;
}
.import{
    width: 150px;
}
.get-code-btn {
    color: #ea5e2a;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: none;
    line-height: 46px;
    text-align: right;
    padding-right: 15px;
    font-size: 14px;
}

.get-code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.error-msg {
    color: #525252;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 20px;
}
.error-msg img{
    width: 15px;
    margin-right: 3px;
}
.login-btn {
    width: 100%;
    background: #e95e2a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top:20px;
    height: 37px;
}

.login-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
}
#editPassword{
    display: none;
}
.login-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    padding:0 10px;
    cursor: pointer;
}

.link:hover {
    color: #e95e2a;
    text-decoration: underline;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

@media (max-width: 480px) {
    .login-container {
        max-width: 100%;
    }
    
    .login-form {
        padding: 20px;
    }
    
    .verification-group {
        flex-direction: column;
    }
    
    .get-code-btn {
        padding: 12px;
    }
}
.round{
    display: flex;
    align-items: center;
    width: 128px;
    justify-content: space-between;
    margin:18px auto;
}
.round span{
    display: block;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    background-color: #e95e2a;
}