* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    /* height: 100px; */
    overflow: auto;
}

.login-container {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: auto;
}

/* Left Panel Styles */
.left-panel {
    width: 50%;
    height: 100%;
    position: absolute;
    /* right: 640px; */
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    background: radial-gradient(ellipse at center, #0b780b 0%, #0b780b 100%);
}

.background-gradient {
    position: absolute;
    inset: 0;
}

.background-shapes {
    position: absolute;
    bottom: -3.711%;
    /* left: -39%; */
    right: -5%;
    top: 0;
    width: 100%;
    height: 100%;
}

.glass-card {
    position: absolute;
    top: calc(50% - 0.5px);
    left: calc(50% - 0.5px);
    transform: translate(-50%, -50%);
    width: 100vh;
    height: 100vh;
    /*background: rgba(255, 255, 255, 0.25);*/
    /*backdrop-filter: blur(15px);*/
    /*border: 1px solid #ffffff;*/
    /*border-radius: 32px;*/
    /*padding: 32px;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 16px;*/
}

.progress-dots {
    display: flex;
    gap: 24px;
    /* height: 16px; */
    /* width: 64px; */
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #F58523;
}

.promo-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 52px;
    color: #ffffff;
    width: min-content;
    min-width: 100%;
}

.learn-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #F58523;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
}

.worker-image {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 400px;
    height: 450px;
    background-image: url('../images/human.png');
    background-size: 100%;
    background-position: 47.85% 100%;
    background-repeat: no-repeat;
}

/* Right Panel Styles */
.right-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: #ffffff;
    /* box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08); */
    /*border-radius: 16px;*/
    overflow: hidden;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 6vh;
    height: 100%;
    justify-content: center;
}

/* Brand Header */
.brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.logo-image {
    width: 70px;
    height: 75px;
    background-image: url('../images/favicon.png');
    background-size: 100%;
    /* background-position: 50.12% 0%; */
    background-repeat: no-repeat;
}

.logo-text {
    width: 215.212px;
    height: 59.568px;
    background-image: url('../images/logo-text-black.png');
    mask-size: 215.212px 59.568px;
    mask-repeat: no-repeat;
    mask-position: 0px;
}

.login-title {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    line-height: normal;
    white-space: pre;
}

.login-subtitle {
    font-size: 16px;
    color: #79747e;
    line-height: normal;
    min-width: 100%;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: normal;
    white-space: pre;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-container input {
    width: 100%;
    height: 48px;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-size: 14px;
    color: #79747e;
    line-height: 24px;
}

.input-container input:focus {
    outline: none;
    border-color: #218c3e;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 290px;
}

.remember-me input[type="checkbox"] {
    width: 24px;
    height: 24px;
    appearance: none;
    background: #218c3e;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

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

.remember-me label {
    font-size: 14px;
    font-weight: normal;
    color: #000000;
    line-height: normal;
    white-space: pre;
    cursor: pointer;
    margin-bottom: 0px;
}

.forgot-password {
    font-size: 14px;
    font-weight: bold;
    color: #218c3e;
    text-decoration: none;
    line-height: normal;
    white-space: pre;
}

/* Login Buttons */
.login-button {
    width: 100%;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    white-space: pre;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.login-button.primary {
    background: #218c3e;
    color: #ffffff;
}

.login-button.primary:hover {
    background: #1a7534;
}

.login-button.primary.disabled, .login-button.primary.disabled:hover, .login-button.primary.disabled:focus, .login-button.primary.disabled.focus, .login-button.primary.disabled:active, .login-button.primary.disabled.active, .login-button.primary[disabled], .login-button.primary[disabled]:hover, .login-button.primary[disabled]:focus, .login-button.primary[disabled].focus, .login-button.primary[disabled]:active, .login-button.primary[disabled].active, fieldset[disabled] .login-button.primary, fieldset[disabled] .login-button.primary:hover, fieldset[disabled] .login-button.primary:focus, fieldset[disabled] .login-button.primary.focus, fieldset[disabled] .login-button.primary:active, fieldset[disabled] .login-button.primary.active {
    color: #fff;
    background-color: #cd6c25;
    border-color: #cd6c25;
}

.login-button.secondary {
    background: transparent;
    color: #218c3e;
    border: 1px solid #218c3e;
}

.login-button.secondary:hover {
    background: #f0f9f1;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image {
    width: auto !important;
    height: 100vh;
    object-fit: contain;
    display: block;
    /*border-radius: 8px;*/
}

.image-label-top {
    position: absolute;
    top: 1px;
    /*left: 10px;*/
    margin: 0;
    padding: 0px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
}

.image-label-bottom {
    /*width: 100%;*/
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    /*background-color: rgba(33, 140, 62, 0.25);*/
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
    font-weight: bold !important;
}

.image-fade-wrapper {
    position: relative;
    display: inline-block;
    /*mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);*/
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.image-fade-wrapper-sm {
    position: relative;
    display: inline-block;
    /*mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);*/
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.owl-dots {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 1440px) {
    .glass-card {
        /*width: 75%;*/
        /*max-width: 550px;*/
        /*height: 100%;*/
        /*min-height: 300px;*/
    }
    
    .promo-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .worker-image {
        /* display: none; */
        width: 300px;
    }
    .learn-button {
        font-size: 16px;
        padding: 10px 18px;
    }

    .login-title {
        font-size: 28px;
        margin: 1px;
    }

    .login-subtitle {
        font-size: 14px;
        color: #79747e;
        line-height: normal;
        min-width: 100%;
        margin: 1px;
    }

    .form-group label {
        font-size: 12px;
    }

    .input-container input {
        height: 34px;
        font-size: 12px;
    }

    .remember-me input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .remember-me label {
        font-size: 12px;
    }

    .forgot-password {
        font-size: 12px;
    }

    .login-button {
        padding: 5px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .left-panel {
        position: relative;
        width: 100%;
        /*height: 600px;*/
        right: auto;
        top: auto;
        transform: none;
    }

    .right-panel {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 640px;
        height: auto;
    }

    .login-form {
        padding: 40px;
    }

    .login-form {
        padding: 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .promo-title {
        font-size: 22px;
        line-height: 32px;
        min-width: 199px !important;
    }
    
    .glass-card {
        padding: 10px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .remember-me {
        width: auto;
    }

    .owl-carousel .owl-item img {
        /*width: 50% !important;*/
    }

    .carousel-image-wrapper {
        height: auto;

    }

    .image-label-bottom {
        bottom: 20px;
    }
}