body.login {
    height: 100%;
    color: #444;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    position: initial !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#connect-login {
    min-height: 100vh;
    background: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 550px;
}

.login-left {
    flex: 1;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-desktop {
    max-width: 100%;
    height: auto;
    display: block;
}

.login-right {
    flex: 1;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registry-header,
.login-header {
    margin-bottom: 8px;
    text-align: center;
}

.registry-header h2,
.login-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.registry-header p,
.login-header p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.registry-footer,
.login-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.registry-footer a,
.login-footer a {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 4px;
}

.registry-footer a:hover,
.login-footer a:hover {
    color: #0097a7;
    text-decoration: underline;
}

.login-span-footer,
.registry-span-footer {
    font-size: small;
}

.description-style {
    color: #808080;
    font-size: 11px;
    font-style: normal;
    margin: 5px 0px 10px;
}

#registry-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 5;
}

/* Remember me and Forgot password wrapper */
.remember-forgot-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: bottom;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.remember-me input[type="checkbox"]:checked {
    background-color: #00AEEF !important;
}

.remember-me input[type="checkbox"]:checked::after {
    position: absolute;
    color: white;
    font-size: 11px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.password-wrapper {
    position: relative;
}

.forgot-password-link {
    color: #00AEEF;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.forgot-password-link:hover {
    color: #0097a7;
    text-decoration: underline;
}

/* Scroll bar style gray */
.rpv-scrollbar-gray::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

.rpv-scrollbar-gray::-webkit-scrollbar-track {
    background: none;
    border-radius: 10px;
}

.rpv-scrollbar-gray::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 10px;
}

.rpv-scrollbar-gray::-webkit-scrollbar-thumb:hover {
    background: #504d4d;
    border-radius: 10px;
}

.rpv-scrollbar-gray::-webkit-scrollbar-thumb:active {
    background: #4c4b4b;
    border-radius: 10px;
}

#connect-recover {
    min-height: 100vh;
    background: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: -20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
    }

    .login-left {
        min-height: 200px;
        padding: 40px 30px;
    }

    .logo-container {
        padding: 20px;
    }

    .login-right {
        padding: 40px 35px;
    }

    .registry-header h2,
    .login-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #connect-login {
        padding: 10px;
    }

    #connect-recover {
        padding: 10px;
    }

    .login-container {
        border-radius: 12px;
    }

    .login-left {
        min-height: 150px;
        padding: 25px 15px;
    }

    .login-right {
        padding: 30px 20px;
    }

    .registry-header h2,
    .login-header h2 {
        font-size: 20px;
    }

    .registry-header p,
    .login-header p {
        font-size: 13px;
    }

    .new-button-color {
        padding: 11px 20px;
        font-size: 14px;
    }

    .form-control:not(select) {
        /* padding: 11px 16px 11px 48px; */
        font-size: 13px;
    }

    .input-icon {
        font-size: 14px;
        left: 12px;
    }
}