/*-----------------------------------*\
  #LOGIN
\*-----------------------------------*/
.login-section {
    width: 100%;
    height: 100vh;
}

.login-background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-side-login {
    height: 100%;
    width: 600px !important;
    background-color: var(--black);
    background-image: url("../images/login-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 0 0 600px;
}
.right-side-login {
    height: 100%;
    width: 100%;
    background-color: var(--white);
}

.login-content-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    z-index: 10;
    margin-top: -100vh;
    padding-top: 200px;
}

.login-content {
    width: 584px;
    height: 460px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: solid 1px var(--border-subtle);
}

.login-contact-codemode {
    width: 500px;
    height: 252px;
    border-radius: 24px;
    border: solid 1px var(--border-subtle);
    background-color: var(--white);

    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.problem-text {
    font-size: 20px;
    line-height: 24px;
    font-weight: var(--bold);
    color: var(--secondary);
}

.codemode-logo-login {
    margin-top: 32px;
    width: 140px;
    height: auto;
    filter: var(--filter-primary);
}

.codemode-contact-container {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.codemode-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--medium);
    color: var(--secondary);
}

.contact-icon-container {
    width: 32px;
    height: 32px;
    border: solid 1px var(--border-subtle);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    filter: var(--filter-primary-blue);
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 64px;
}

.business-logo {
    width: 250px;
    filter: var(--filter-primary);
    margin-bottom: 24px;
}

.login-title {
    margin-top: 16px;
    font-size: 20px;
    line-height: 24px;
    color: var(--primary);
    font-weight: var(--bold);
}

.login-secondary-title {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--medium);
    color: var(--quertanary);
}

.login-content-form {
    width: 100%;
    height: auto;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.placeholder {
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
    color: var(--secondary);
}

.input-container-login {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
    width: 100%;
}

/*.input-container-login.password {*/
/*    margin-top: 24px;*/
/*}*/

.login-input {
    width: 100%;
    height: 40px;
    background-color: var(--white);
    border: solid 1px var(--border-primary);
    padding: 10px 8px;
    border-radius: 12px;
}

.login-button {
    min-width: 174px;
    width: fit-content;
    height: 40px;
    background-color: var(--primary-blue);
}

.login-button:is(:hover, :focus-visible) {
    background-color: var(--inverse);
    border: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 4px rgba(112, 112, 112, 0.4);
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1200px) {
    .left-side-login {
        width: 400px !important;
        flex: 0 0 400px;
    }

    .login-content {
        width: 500px;
    }

    .login-contact-codemode {
        width: 400px;
    }
}

@media screen and (max-width: 968px) {
    .left-side-login {
        display: none;
    }

    .login-content-container {
        flex-direction: column;
        padding-top: 100px;
        align-items: center;
        width: 100%;
    }

    .login-content {
        width: 90%;
        max-width: 500px;
        height: auto;
        min-height: 460px;
        margin: 0 auto;
    }

    .login-contact-codemode {
        width: 90%;
        max-width: 500px;
        height: auto;
        min-height: 252px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .login-content-container {
        padding-top: 60px;
    }

    .login-content {
        padding: 32px 24px;
    }

    .login-contact-codemode {
        padding: 24px;
    }

    .business-logo {
        width: 100px;
    }

    .login-title {
        font-size: 18px;
        text-align: center;
    }

    .login-secondary-title {
        text-align: center;
    }

    .problem-text {
        font-size: 18px;
    }

    .codemode-logo-login {
        width: 120px;
    }

    .login-button {
        width: 100%;
    }

    .codemode-contact {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .login-section {
        position: relative;
        min-height: 100vh;
        height: auto;
    }

    .login-background {
        position: relative;
        height: 100%;
    }

    .left-side-login {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 0;
    }

    .right-side-login {
        display: none;
    }

    .login-content-container {
        position: relative;
        width: 100%;
        padding: 2rem;
        margin-top: 0;
        min-height: 100vh;
        z-index: 1;
    }
}
