/* login section container */
.login-container {
    width: 100%;
    min-height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-content: flex-start;
}

::-webkit-scrollbar {
    display: none;
}

.login-content {
    margin-top: 18px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.login-panel {
    height: fit-content;
    border: 1px solid #E9E9E9;
    border-radius: 15px;
    box-shadow: 0px 0px 18px -1px rgb(54, 69, 155, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}


.login-footer {
    align-self: flex-start;
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.login-content-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-captcha {
    width: 100%;
    column-gap: 18px;
    row-gap: 23px;
}

.login-captcha-input {
    max-width: 180px;
}

/* media queries */
@media (max-width:768px) {
    .login-captcha-input {
        max-width: 100%;
    }
    .app-captcha img{
        height: 52px;
        width: 133px;
    }

    .login-captcha {
        column-gap: 8px;
    }

    .login-panel {
        border-radius: 0;
        box-shadow: none;
        border-color: transparent;
    }
}