.register-page-container {
    padding: 3rem 2rem;
    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;
    }


    .register-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;
        }

        .form-group-row {
            display: flex;
            align-items: center;
            gap: 2rem;

            .default-input-container {
                flex: 1;
            }
        }

        .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;
            }

            .error {
                font-size: 0.875rem;
                line-height: 1.5rem;
                margin: 0;
                color: #F23030;
                margin-top: 5px;
            }

            .form-control.error {
                border: 1px solid #F23030;
            }

            .form-select:focus,
            .form-control:focus {
                border: 1px solid #ff3115;
                box-shadow: none;
            }

            .form-control:disabled {
                background-color: #F3F4F6;
                border-color: #F3F4F6;
            }

            .phone-custom-lebel-group {
                display: flex;
                gap: 0.5rem;
                align-items: center;
                justify-content: space-between;

                .confirm-phone-number-button {
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 0.875rem;
                    line-height: 1.5rem;
                    margin: 0;
                    text-align: end;
                    color: #ff3115;
                }

                .spinner-border {
                    width: 1rem;
                    height: 1rem;
                    border-width: 0.1rem;
                    color: #ff3115;
                }
            }
        }

        .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;

            &:disabled {
                opacity: 0.4;
            }
        }
    }

    .sign-in {
        color: #505050;

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