.login-page-container {
    padding: 3rem 2rem;
    direction: rtl;
    background-color: rgb(249 250 251);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    @media (max-width: 640px) {
        width: 100%;
        padding: 3rem 0;
    }


    .logo-container {
        max-width: 240px;

        .logo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .title {
        letter-spacing: -0.025em;
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 2.25rem;
        text-align: center;
        margin: 0;
        color: #212121;
    }


    .login-form-container {
        box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        padding: 3rem;
        border-radius: 0.5rem;
        background-color: white;

        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 480px;
        max-width: 100%;

        @media (max-width: 640px) {
            width: 100%;
            padding: 3rem 1.5rem;
        }

        .default-input-container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            label {
                font-weight: 500;
                font-size: 0.875rem;
                line-height: 1.5rem;
                color: #505050;
            }

            .hint {
                font-size: 0.875rem;
                line-height: 1.5rem;
                margin: 0;
                color: #505050;
            }
            
            .form-control:focus {
                border: 1px solid #ff3115;
                box-shadow: none;
            }
        }

        .login-form-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;

            .forgot-password {
                text-decoration: none;
                font-weight: 600;
                font-size: 0.875rem;
                line-height: 1.5rem;
                margin: 0;
                color: #ff3115;
            }

            label {
                font-size: 0.875rem;
                line-height: 1.5rem;
                margin: 0;
                color: #505050;
            }

            .custom-form-check {
                display: flex;
                gap: 0.5rem;
                align-items: center;
                padding-left: 0;

                input {
                    float: none;
                    margin: 0;
                    cursor: pointer;
                }
            }
        }

        .login-form-submit-button {
            box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.5rem;
            padding-top: 0.375rem;
            padding-bottom: 0.375rem;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
            border-radius: 0.375rem;
            justify-content: center;
            display: flex;
            width: 100%;
            background-color: #ff3115;
            color: white;
            border: none;
        }
    }

    .sign-up {
        color: #505050;

        .sign-up-button {
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.5rem;
            margin: 0;
            color: #ff3115;
        }
    }
}